├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── enhancement-feature-request.md ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── lint-baseline.xml ├── proguard-rules.pro ├── schemas │ ├── com.dot.gallery.feature_node.data.data_source.InternalDatabase │ │ └── 1.json │ ├── debug │ │ └── com.dot.gallery.feature_node.data.data_source.InternalDatabase │ │ │ └── 1.json │ ├── release │ │ └── com.dot.gallery.feature_node.data.data_source.InternalDatabase │ │ │ └── 1.json │ └── staging │ │ └── com.dot.gallery.feature_node.data.data_source.InternalDatabase │ │ └── 1.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── dot │ │ └── gallery │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── kotlin │ │ └── com │ │ │ └── dot │ │ │ └── gallery │ │ │ ├── GalleryApp.kt │ │ │ ├── core │ │ │ ├── Constants.kt │ │ │ ├── MediaKey.kt │ │ │ ├── MediaObserver.kt │ │ │ ├── MediaState.kt │ │ │ ├── Resource.kt │ │ │ ├── Settings.kt │ │ │ ├── presentation │ │ │ │ └── components │ │ │ │ │ ├── AppBar.kt │ │ │ │ │ ├── CheckBox.kt │ │ │ │ │ ├── DragHandle.kt │ │ │ │ │ ├── EmptyMedia.kt │ │ │ │ │ ├── ErrorComponent.kt │ │ │ │ │ ├── FilterComponent.kt │ │ │ │ │ ├── LoadingMedia.kt │ │ │ │ │ ├── NavigationActions.kt │ │ │ │ │ ├── NavigationButton.kt │ │ │ │ │ ├── NavigationComp.kt │ │ │ │ │ ├── SelectionSheet.kt │ │ │ │ │ ├── StickyHeader.kt │ │ │ │ │ └── util │ │ │ │ │ ├── AutoResizeText.kt │ │ │ │ │ ├── ShadowModifier.kt │ │ │ │ │ └── StickyHeaderGrid.kt │ │ │ └── util │ │ │ │ └── SettingsExt.kt │ │ │ ├── feature_node │ │ │ ├── data │ │ │ │ ├── data_source │ │ │ │ │ ├── MediaQuery.kt │ │ │ │ │ ├── PinnedDao.kt │ │ │ │ │ └── PinnedDatabase.kt │ │ │ │ ├── data_types │ │ │ │ │ ├── GetAlbums.kt │ │ │ │ │ ├── GetFavoriteMedia.kt │ │ │ │ │ ├── GetMedia.kt │ │ │ │ │ ├── GetMediaByUri.kt │ │ │ │ │ ├── GetTrashedMedia.kt │ │ │ │ │ └── MediaStoreCursor.kt │ │ │ │ └── repository │ │ │ │ │ └── MediaRepositoryImpl.kt │ │ │ ├── domain │ │ │ │ ├── model │ │ │ │ │ ├── Album.kt │ │ │ │ │ ├── ExifAttributes.kt │ │ │ │ │ ├── Media.kt │ │ │ │ │ ├── MediaItem.kt │ │ │ │ │ └── PinnedAlbum.kt │ │ │ │ ├── repository │ │ │ │ │ └── MediaRepository.kt │ │ │ │ ├── use_case │ │ │ │ │ ├── DeletePinnedAlbumUseCase.kt │ │ │ │ │ ├── GetAlbumsUseCase.kt │ │ │ │ │ ├── GetAlbumsWithTypeUseCase.kt │ │ │ │ │ ├── GetMediaByAlbumUseCase.kt │ │ │ │ │ ├── GetMediaByAlbumWithTypeUseCase.kt │ │ │ │ │ ├── GetMediaByTypeUseCase.kt │ │ │ │ │ ├── GetMediaByUriUseCase.kt │ │ │ │ │ ├── GetMediaFavoriteUseCase.kt │ │ │ │ │ ├── GetMediaListByUrisUseCase.kt │ │ │ │ │ ├── GetMediaTrashedUseCase.kt │ │ │ │ │ ├── GetMediaUseCase.kt │ │ │ │ │ ├── InsertPinnedAlbumUseCase.kt │ │ │ │ │ ├── MediaHandleUseCase.kt │ │ │ │ │ └── MediaUseCases.kt │ │ │ │ └── util │ │ │ │ │ ├── MediaOrder.kt │ │ │ │ │ └── OrderType.kt │ │ │ └── presentation │ │ │ │ ├── albums │ │ │ │ ├── AlbumsScreen.kt │ │ │ │ ├── AlbumsViewModel.kt │ │ │ │ └── components │ │ │ │ │ ├── AlbumComponent.kt │ │ │ │ │ └── PinnedAlbumsCarousel.kt │ │ │ │ ├── common │ │ │ │ ├── ChanneledViewModel.kt │ │ │ │ ├── MediaScreen.kt │ │ │ │ ├── MediaViewModel.kt │ │ │ │ └── components │ │ │ │ │ ├── MediaComponent.kt │ │ │ │ │ ├── MediaGridView.kt │ │ │ │ │ ├── MediaImage.kt │ │ │ │ │ └── TwoLinedDateToolbarTitle.kt │ │ │ │ ├── exif │ │ │ │ └── EditExifScreen.kt │ │ │ │ ├── favorites │ │ │ │ ├── FavoriteScreen.kt │ │ │ │ └── components │ │ │ │ │ ├── EmptyFavorites.kt │ │ │ │ │ └── FavoriteNavActions.kt │ │ │ │ ├── main │ │ │ │ └── MainActivity.kt │ │ │ │ ├── mediaview │ │ │ │ ├── MediaViewScreen.kt │ │ │ │ └── components │ │ │ │ │ ├── AppBar.kt │ │ │ │ │ ├── BottomBar.kt │ │ │ │ │ ├── MediaInfo.kt │ │ │ │ │ ├── media │ │ │ │ │ ├── MediaPreviewComponent.kt │ │ │ │ │ └── ZoomablePagerImage.kt │ │ │ │ │ └── video │ │ │ │ │ ├── VideoDurationHeader.kt │ │ │ │ │ ├── VideoPlayer.kt │ │ │ │ │ └── VideoPlayerController.kt │ │ │ │ ├── picker │ │ │ │ ├── PickerActivity.kt │ │ │ │ ├── PickerViewModel.kt │ │ │ │ └── components │ │ │ │ │ ├── PickerMediaScreen.kt │ │ │ │ │ └── PickerScreen.kt │ │ │ │ ├── search │ │ │ │ ├── MainSearchBar.kt │ │ │ │ └── SearchViewModel.kt │ │ │ │ ├── settings │ │ │ │ ├── SettingsScreen.kt │ │ │ │ ├── SettingsViewModel.kt │ │ │ │ ├── components │ │ │ │ │ ├── AppHeader.kt │ │ │ │ │ └── SettingsItems.kt │ │ │ │ └── customization │ │ │ │ │ └── albumsize │ │ │ │ │ └── AlbumSizeScreen.kt │ │ │ │ ├── standalone │ │ │ │ ├── StandaloneActivity.kt │ │ │ │ └── StandaloneViewModel.kt │ │ │ │ ├── timeline │ │ │ │ ├── TimelineScreen.kt │ │ │ │ └── components │ │ │ │ │ ├── RequestMediaManager.kt │ │ │ │ │ └── TimelineNavActions.kt │ │ │ │ ├── trashed │ │ │ │ ├── TrashedScreen.kt │ │ │ │ └── components │ │ │ │ │ ├── AutoDeleteFooter.kt │ │ │ │ │ ├── EmptyTrash.kt │ │ │ │ │ ├── TrashDialog.kt │ │ │ │ │ ├── TrashedNavActions.kt │ │ │ │ │ └── TrashedViewBottomBar.kt │ │ │ │ ├── util │ │ │ │ ├── AppBottomSheetState.kt │ │ │ │ ├── BottomSheetScaffoldExt.kt │ │ │ │ ├── ContextExt.kt │ │ │ │ ├── DateExt.kt │ │ │ │ ├── ExifMetadata.kt │ │ │ │ ├── FileUtils.kt │ │ │ │ ├── Geolocation.kt │ │ │ │ ├── ImageUtils.kt │ │ │ │ ├── MapBoxURL.kt │ │ │ │ ├── NavigationItem.kt │ │ │ │ ├── NetworkExt.kt │ │ │ │ ├── Screen.kt │ │ │ │ ├── StateExt.kt │ │ │ │ ├── WindowInsetsControllerExt.kt │ │ │ │ └── launchMap.kt │ │ │ │ └── wallpaper │ │ │ │ └── SetWallpaperActivity.kt │ │ │ ├── injection │ │ │ ├── AppModule.kt │ │ │ └── GalleryGlideModule.kt │ │ │ └── ui │ │ │ ├── core │ │ │ ├── Icons.kt │ │ │ └── icons │ │ │ │ ├── Face.kt │ │ │ │ ├── NoImage.kt │ │ │ │ └── Star.kt │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Dimens.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── res │ │ ├── drawable │ │ ├── ic_donate.xml │ │ ├── ic_error.xml │ │ ├── ic_github.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_foreground_monochrome.xml │ │ ├── ic_media_manage.xml │ │ ├── image_sample_1.webp │ │ ├── image_sample_2.webp │ │ ├── image_sample_3.webp │ │ └── image_sample_4.webp │ │ ├── layout │ │ └── album_pin_frame.xml │ │ ├── mipmap │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── values-af-rZA │ │ └── strings.xml │ │ ├── values-ar-rSA │ │ └── strings.xml │ │ ├── values-ca-rES │ │ └── strings.xml │ │ ├── values-cs-rCZ │ │ └── strings.xml │ │ ├── values-da-rDK │ │ └── strings.xml │ │ ├── values-de-rDE │ │ └── strings.xml │ │ ├── values-el-rGR │ │ └── strings.xml │ │ ├── values-en-rUS │ │ └── strings.xml │ │ ├── values-es-rES │ │ └── strings.xml │ │ ├── values-fi-rFI │ │ └── strings.xml │ │ ├── values-fr-rFR │ │ └── strings.xml │ │ ├── values-gl-rES │ │ └── strings.xml │ │ ├── values-hu-rHU │ │ └── strings.xml │ │ ├── values-it-rIT │ │ └── strings.xml │ │ ├── values-iw-rIL │ │ └── strings.xml │ │ ├── values-ja-rJP │ │ └── strings.xml │ │ ├── values-ko-rKR │ │ └── strings.xml │ │ ├── values-nl-rNL │ │ └── strings.xml │ │ ├── values-no-rNO │ │ └── strings.xml │ │ ├── values-or-rIN │ │ └── strings.xml │ │ ├── values-pl-rPL │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-ro-rRO │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ └── strings.xml │ │ ├── values-sr-rSP │ │ └── strings.xml │ │ ├── values-sv-rSE │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ └── strings.xml │ │ ├── values-uk-rUA │ │ └── strings.xml │ │ ├── values-vi-rVN │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ ├── data_extraction_rules.xml │ │ └── filepaths.xml │ ├── release │ └── generated │ │ └── baselineProfiles │ │ ├── baseline-prof.txt │ │ └── startup-prof.txt │ └── test │ └── java │ └── com │ └── dot │ └── gallery │ └── ExampleUnitTest.kt ├── baselineProfile ├── .gitignore ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── dot │ └── baselineprofile │ ├── BaselineProfileGenerator.kt │ └── StartupBenchmarks.kt ├── crowdin.yml ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ └── 10216.txt │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ └── short_description.txt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── renovate.json ├── screenshots ├── items │ ├── support_banner.png │ ├── support_paypal.png │ └── support_revolut.png ├── preview.png ├── preview_fav_trash.png ├── preview_mainscreen.png └── preview_mediaview.png └── settings.gradle.kts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/.github/ISSUE_TEMPLATE/enhancement-feature-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /release -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/lint-baseline.xml -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/schemas/com.dot.gallery.feature_node.data.data_source.InternalDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/schemas/com.dot.gallery.feature_node.data.data_source.InternalDatabase/1.json -------------------------------------------------------------------------------- /app/schemas/debug/com.dot.gallery.feature_node.data.data_source.InternalDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/schemas/debug/com.dot.gallery.feature_node.data.data_source.InternalDatabase/1.json -------------------------------------------------------------------------------- /app/schemas/release/com.dot.gallery.feature_node.data.data_source.InternalDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/schemas/release/com.dot.gallery.feature_node.data.data_source.InternalDatabase/1.json -------------------------------------------------------------------------------- /app/schemas/staging/com.dot.gallery.feature_node.data.data_source.InternalDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/schemas/staging/com.dot.gallery.feature_node.data.data_source.InternalDatabase/1.json -------------------------------------------------------------------------------- /app/src/androidTest/java/com/dot/gallery/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/androidTest/java/com/dot/gallery/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/GalleryApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/GalleryApp.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/Constants.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/MediaKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/MediaKey.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/MediaObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/MediaObserver.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/MediaState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/MediaState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/Resource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/Resource.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/Settings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/Settings.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/AppBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/AppBar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/CheckBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/CheckBox.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/DragHandle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/DragHandle.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/EmptyMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/EmptyMedia.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/ErrorComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/ErrorComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/FilterComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/FilterComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/LoadingMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/LoadingMedia.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/NavigationActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/NavigationActions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/NavigationButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/NavigationButton.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/NavigationComp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/NavigationComp.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/SelectionSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/SelectionSheet.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/StickyHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/StickyHeader.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/util/AutoResizeText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/util/AutoResizeText.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/util/ShadowModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/util/ShadowModifier.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/presentation/components/util/StickyHeaderGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/presentation/components/util/StickyHeaderGrid.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/core/util/SettingsExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/core/util/SettingsExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/data/data_source/MediaQuery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/data/data_source/MediaQuery.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/data/data_source/PinnedDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/data/data_source/PinnedDao.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/data/data_source/PinnedDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/data/data_source/PinnedDatabase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/GetAlbums.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/GetAlbums.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/GetFavoriteMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/GetFavoriteMedia.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/GetMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/GetMedia.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/GetMediaByUri.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/GetMediaByUri.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/GetTrashedMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/GetTrashedMedia.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/MediaStoreCursor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/data/data_types/MediaStoreCursor.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/data/repository/MediaRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/data/repository/MediaRepositoryImpl.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/model/Album.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/model/Album.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/model/ExifAttributes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/model/ExifAttributes.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/model/Media.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/model/Media.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/model/MediaItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/model/MediaItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/model/PinnedAlbum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/model/PinnedAlbum.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/repository/MediaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/repository/MediaRepository.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/DeletePinnedAlbumUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/DeletePinnedAlbumUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetAlbumsUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetAlbumsUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetAlbumsWithTypeUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetAlbumsWithTypeUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaByAlbumUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaByAlbumUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaByAlbumWithTypeUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaByAlbumWithTypeUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaByTypeUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaByTypeUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaByUriUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaByUriUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaFavoriteUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaFavoriteUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaListByUrisUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaListByUrisUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaTrashedUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaTrashedUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/GetMediaUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/InsertPinnedAlbumUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/InsertPinnedAlbumUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/MediaHandleUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/MediaHandleUseCase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/MediaUseCases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/use_case/MediaUseCases.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/util/MediaOrder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/util/MediaOrder.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/domain/util/OrderType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/domain/util/OrderType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/albums/AlbumsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/albums/AlbumsScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/albums/AlbumsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/albums/AlbumsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/albums/components/AlbumComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/albums/components/AlbumComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/albums/components/PinnedAlbumsCarousel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/albums/components/PinnedAlbumsCarousel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/ChanneledViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/ChanneledViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/MediaScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/MediaScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/MediaViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/MediaViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/components/MediaComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/components/MediaComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/components/MediaGridView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/components/MediaGridView.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/components/MediaImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/components/MediaImage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/components/TwoLinedDateToolbarTitle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/common/components/TwoLinedDateToolbarTitle.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/exif/EditExifScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/exif/EditExifScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/favorites/FavoriteScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/favorites/FavoriteScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/favorites/components/EmptyFavorites.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/favorites/components/EmptyFavorites.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/favorites/components/FavoriteNavActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/favorites/components/FavoriteNavActions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/main/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/main/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/MediaViewScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/MediaViewScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/AppBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/AppBar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/BottomBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/BottomBar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/MediaInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/MediaInfo.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/media/MediaPreviewComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/media/MediaPreviewComponent.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/media/ZoomablePagerImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/media/ZoomablePagerImage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/video/VideoDurationHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/video/VideoDurationHeader.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/video/VideoPlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/video/VideoPlayer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/video/VideoPlayerController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/mediaview/components/video/VideoPlayerController.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/picker/PickerActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/picker/PickerActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/picker/PickerViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/picker/PickerViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/picker/components/PickerMediaScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/picker/components/PickerMediaScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/picker/components/PickerScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/picker/components/PickerScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/search/MainSearchBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/search/MainSearchBar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/search/SearchViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/search/SearchViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/settings/SettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/settings/SettingsScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/settings/SettingsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/settings/SettingsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/settings/components/AppHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/settings/components/AppHeader.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/settings/components/SettingsItems.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/settings/components/SettingsItems.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/settings/customization/albumsize/AlbumSizeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/settings/customization/albumsize/AlbumSizeScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/standalone/StandaloneActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/standalone/StandaloneActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/standalone/StandaloneViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/standalone/StandaloneViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/timeline/TimelineScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/timeline/TimelineScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/timeline/components/RequestMediaManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/timeline/components/RequestMediaManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/timeline/components/TimelineNavActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/timeline/components/TimelineNavActions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/TrashedScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/TrashedScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/components/AutoDeleteFooter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/components/AutoDeleteFooter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/components/EmptyTrash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/components/EmptyTrash.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/components/TrashDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/components/TrashDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/components/TrashedNavActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/components/TrashedNavActions.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/components/TrashedViewBottomBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/trashed/components/TrashedViewBottomBar.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/AppBottomSheetState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/AppBottomSheetState.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/BottomSheetScaffoldExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/BottomSheetScaffoldExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/ContextExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/ContextExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/DateExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/DateExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/ExifMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/ExifMetadata.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/FileUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/Geolocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/Geolocation.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/ImageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/ImageUtils.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/MapBoxURL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/MapBoxURL.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/NavigationItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/NavigationItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/NetworkExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/NetworkExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/Screen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/StateExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/StateExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/WindowInsetsControllerExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/WindowInsetsControllerExt.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/launchMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/util/launchMap.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/feature_node/presentation/wallpaper/SetWallpaperActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/feature_node/presentation/wallpaper/SetWallpaperActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/injection/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/injection/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/injection/GalleryGlideModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/injection/GalleryGlideModule.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/ui/core/Icons.kt: -------------------------------------------------------------------------------- 1 | package com.dot.gallery.ui.core 2 | 3 | object Icons -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/ui/core/icons/Face.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/ui/core/icons/Face.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/ui/core/icons/NoImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/ui/core/icons/NoImage.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/ui/core/icons/Star.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/ui/core/icons/Star.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/ui/theme/Dimens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/ui/theme/Dimens.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/ui/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/dot/gallery/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/kotlin/com/dot/gallery/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_donate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/drawable/ic_donate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/drawable/ic_error.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/drawable/ic_github.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/drawable/ic_launcher_foreground_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_media_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/drawable/ic_media_manage.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/image_sample_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/drawable/image_sample_1.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/image_sample_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/drawable/image_sample_2.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/image_sample_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/drawable/image_sample_3.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/image_sample_4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/drawable/image_sample_4.webp -------------------------------------------------------------------------------- /app/src/main/res/layout/album_pin_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/layout/album_pin_frame.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/mipmap/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/mipmap/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/values-af-rZA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-af-rZA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ar-rSA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-ar-rSA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-ca-rES/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs-rCZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-cs-rCZ/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da-rDK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-da-rDK/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de-rDE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-de-rDE/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el-rGR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-el-rGR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-en-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-en-rUS/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-es-rES/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fi-rFI/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-fi-rFI/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr-rFR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-fr-rFR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-gl-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-gl-rES/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu-rHU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-hu-rHU/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-it-rIT/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-iw-rIL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-iw-rIL/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja-rJP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-ja-rJP/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko-rKR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-ko-rKR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl-rNL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-nl-rNL/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-no-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-no-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-or-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-or-rIN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl-rPL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-pl-rPL/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro-rRO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-ro-rRO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sr-rSP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-sr-rSP/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sv-rSE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-sv-rSE/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-tr-rTR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk-rUA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-uk-rUA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vi-rVN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-vi-rVN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/main/res/xml/filepaths.xml -------------------------------------------------------------------------------- /app/src/release/generated/baselineProfiles/baseline-prof.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/release/generated/baselineProfiles/baseline-prof.txt -------------------------------------------------------------------------------- /app/src/release/generated/baselineProfiles/startup-prof.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/test/java/com/dot/gallery/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/app/src/test/java/com/dot/gallery/ExampleUnitTest.kt -------------------------------------------------------------------------------- /baselineProfile/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /baselineProfile/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/baselineProfile/build.gradle.kts -------------------------------------------------------------------------------- /baselineProfile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselineProfile/src/main/java/com/dot/baselineprofile/BaselineProfileGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/baselineProfile/src/main/java/com/dot/baselineprofile/BaselineProfileGenerator.kt -------------------------------------------------------------------------------- /baselineProfile/src/main/java/com/dot/baselineprofile/StartupBenchmarks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/baselineProfile/src/main/java/com/dot/baselineprofile/StartupBenchmarks.kt -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/crowdin.yml -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10216.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/changelogs/10216.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/10.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/11.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/7.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/8.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/9.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/gradlew.bat -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/renovate.json -------------------------------------------------------------------------------- /screenshots/items/support_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/screenshots/items/support_banner.png -------------------------------------------------------------------------------- /screenshots/items/support_paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/screenshots/items/support_paypal.png -------------------------------------------------------------------------------- /screenshots/items/support_revolut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/screenshots/items/support_revolut.png -------------------------------------------------------------------------------- /screenshots/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/screenshots/preview.png -------------------------------------------------------------------------------- /screenshots/preview_fav_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/screenshots/preview_fav_trash.png -------------------------------------------------------------------------------- /screenshots/preview_mainscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/screenshots/preview_mainscreen.png -------------------------------------------------------------------------------- /screenshots/preview_mediaview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/screenshots/preview_mediaview.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T8RIN/Gallery/HEAD/settings.gradle.kts --------------------------------------------------------------------------------