Repository: Moop-App/Moop-Android Branch: develop Commit: d5847f472899 Files: 378 Total size: 7.1 MB Directory structure: gitextract_5ey_lysb/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── auto_assign.yml │ ├── ci-gradle.properties │ └── workflows/ │ └── build.yaml ├── .gitignore ├── CHECK.md ├── LICENSE ├── README.md ├── app/ │ ├── .gitignore │ ├── build.gradle │ ├── dependencies/ │ │ └── releaseRuntimeClasspath.txt │ ├── proguard-rules.pro │ └── src/ │ ├── androidTest/ │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── ExampleInstrumentedTest.kt │ ├── debug/ │ │ └── res/ │ │ ├── drawable/ │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_launcher_foreground_dark.xml │ │ │ └── ic_launcher_monochrome.xml │ │ └── mipmap-anydpi-v26/ │ │ └── ic_launcher.xml │ ├── main/ │ │ ├── AndroidManifest.xml │ │ ├── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ ├── MovieApplication.kt │ │ │ ├── di/ │ │ │ │ ├── AppModule.kt │ │ │ │ ├── ApplicationModule.kt │ │ │ │ └── MainNavigatorImpl.kt │ │ │ ├── startup/ │ │ │ │ └── LoggerInitializer.kt │ │ │ └── ui/ │ │ │ └── main/ │ │ │ ├── MainActivity.kt │ │ │ ├── MainViewModel.kt │ │ │ ├── NavigationState.kt │ │ │ └── NavigatorImpl.kt │ │ └── res/ │ │ ├── drawable/ │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_launcher_foreground_dark.xml │ │ │ ├── ic_launcher_monochrome.xml │ │ │ ├── ic_splash.xml │ │ │ ├── icon_v0.xml │ │ │ ├── icon_v1.xml │ │ │ ├── icon_v1_1.xml │ │ │ ├── icon_v1_2.xml │ │ │ ├── icon_v1_3.xml │ │ │ └── icon_v1_4.xml │ │ ├── mipmap-anydpi-v26/ │ │ │ └── ic_launcher.xml │ │ ├── mipmap-night-anydpi-v26/ │ │ │ └── ic_launcher.xml │ │ ├── values/ │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ ├── strings_no_translate.xml │ │ │ ├── sys_ui.xml │ │ │ └── themes.xml │ │ ├── values-ko/ │ │ │ └── strings.xml │ │ ├── values-night/ │ │ │ └── sys_ui.xml │ │ ├── values-notnight-v27/ │ │ │ └── sys_ui.xml │ │ ├── values-v27/ │ │ │ └── themes.xml │ │ └── values-v29/ │ │ └── themes.xml │ ├── release/ │ │ └── generated/ │ │ └── baselineProfiles/ │ │ ├── baseline-prof.txt │ │ └── startup-prof.txt │ └── test/ │ └── java/ │ └── soup/ │ └── movie/ │ └── ExampleUnitTest.kt ├── build-logic/ │ ├── convention/ │ │ ├── build.gradle.kts │ │ └── src/ │ │ └── main/ │ │ └── kotlin/ │ │ ├── AndroidApplicationConventionPlugin.kt │ │ ├── AndroidBuildConfigConventionPlugin.kt │ │ ├── AndroidComposeConventionPlugin.kt │ │ ├── AndroidHiltConventionPlugin.kt │ │ ├── AndroidLibraryConventionPlugin.kt │ │ ├── AndroidTestConventionPlugin.kt │ │ └── soup/ │ │ └── movie/ │ │ └── buildlogic/ │ │ ├── Android.kt │ │ ├── Compose.kt │ │ ├── Dependencies.kt │ │ ├── Kotlin.kt │ │ └── Versions.kt │ ├── gradle.properties │ └── settings.gradle.kts ├── build.gradle ├── check.sh ├── core/ │ ├── buildconfig/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ └── AndroidManifest.xml │ ├── buildconfig-stub/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ └── AndroidManifest.xml │ ├── datetime/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ ├── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── datetime/ │ │ │ └── DateHelper.kt │ │ └── test/ │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── datetime/ │ │ └── DataHelperTest.kt │ ├── designsystem/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ ├── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── core/ │ │ │ └── designsystem/ │ │ │ ├── icon/ │ │ │ │ └── MovieIcons.kt │ │ │ ├── theme/ │ │ │ │ ├── Colors.kt │ │ │ │ └── Themes.kt │ │ │ └── util/ │ │ │ └── Debounce.kt │ │ └── res/ │ │ └── drawable/ │ │ ├── avd_favorite_selected.xml │ │ ├── avd_home_now_selected.xml │ │ ├── filter_chip_cgv_cancel.xml │ │ ├── filter_chip_lotte_cancel.xml │ │ ├── filter_chip_megabox_cancel.xml │ │ ├── ic_imdb.xml │ │ ├── ic_loading_logo.xml │ │ ├── ic_logo_youtube.xml │ │ ├── ic_metacritic.xml │ │ ├── ic_rt.xml │ │ └── ic_splash_launcher.xml │ ├── external/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ ├── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── core/ │ │ │ └── external/ │ │ │ ├── Context.kt │ │ │ └── YouTube.kt │ │ └── res/ │ │ └── anim/ │ │ ├── fade_in.xml │ │ └── fade_out.xml │ ├── imageloading/ │ │ ├── api/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── core/ │ │ │ └── imageloading/ │ │ │ └── AsyncImage.kt │ │ └── impl/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── core/ │ │ └── imageloading/ │ │ └── impl/ │ │ └── CoilInitializer.kt │ ├── kotlin/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── common/ │ │ ├── Dispatchers.kt │ │ └── di/ │ │ ├── CoroutineScopesModule.kt │ │ └── DispatchersModule.kt │ ├── logger/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── log/ │ │ ├── DebugTree.kt │ │ └── Logger.kt │ └── resources/ │ ├── .gitignore │ ├── build.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── kotlin/ │ │ └── soup/ │ │ └── movie/ │ │ └── resources/ │ │ └── Resources.kt │ └── res/ │ ├── drawable/ │ │ └── ic_notify_default.xml │ ├── values/ │ │ └── strings.xml │ └── values-ko/ │ └── strings.xml ├── data/ │ ├── database/ │ │ ├── api/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── data/ │ │ │ └── database/ │ │ │ └── LocalDataSource.kt │ │ └── impl/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── data/ │ │ └── database/ │ │ └── impl/ │ │ ├── LocalDataSourceFactory.kt │ │ ├── LocalDataSourceImpl.kt │ │ ├── MovieCacheDatabase.kt │ │ ├── MovieDatabase.kt │ │ ├── converter/ │ │ │ ├── CacheDatabaseTypeConverter.kt │ │ │ └── FavoriteMovieTypeConverters.kt │ │ ├── dao/ │ │ │ ├── FavoriteMovieDao.kt │ │ │ ├── MovieCacheDao.kt │ │ │ └── OpenDateAlarmDao.kt │ │ ├── di/ │ │ │ └── DatabaseModule.kt │ │ ├── entity/ │ │ │ ├── FavoriteMovieEntity.kt │ │ │ ├── MovieEntity.kt │ │ │ ├── MovieListEntity.kt │ │ │ └── OpenDateAlarmEntity.kt │ │ └── mapper/ │ │ ├── EntityToModelMapper.kt │ │ └── ModelToEntityMapper.kt │ ├── model/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── model/ │ │ ├── ActorModel.kt │ │ ├── BoxOfficeModel.kt │ │ ├── CgvInfoModel.kt │ │ ├── CompanyModel.kt │ │ ├── ImdbInfoModel.kt │ │ ├── LotteInfoModel.kt │ │ ├── MegaboxInfoModel.kt │ │ ├── MetascoreInfoModel.kt │ │ ├── MovieDetailModel.kt │ │ ├── MovieListModel.kt │ │ ├── MovieModel.kt │ │ ├── OpenDateAlarmModel.kt │ │ ├── RottenTomatoInfoModel.kt │ │ ├── TheaterRatingsModel.kt │ │ ├── TrailerModel.kt │ │ └── settings/ │ │ ├── AgeFilter.kt │ │ └── TheaterFilter.kt │ ├── network/ │ │ ├── api/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── data/ │ │ │ └── network/ │ │ │ ├── RemoteDataSource.kt │ │ │ └── response/ │ │ │ ├── ActorResponse.kt │ │ │ ├── BoxOfficeResponse.kt │ │ │ ├── CgvInfoResponse.kt │ │ │ ├── CompanyResponse.kt │ │ │ ├── ImdbInfoResponse.kt │ │ │ ├── LotteInfoResponse.kt │ │ │ ├── MegaboxInfoResponse.kt │ │ │ ├── MetascoreInfoResponse.kt │ │ │ ├── MovieDetailResponse.kt │ │ │ ├── MovieListResponse.kt │ │ │ ├── MovieResponse.kt │ │ │ ├── RottenTomatoInfoResponse.kt │ │ │ ├── TheaterRatingsResponse.kt │ │ │ └── TrailerResponse.kt │ │ └── impl/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── data/ │ │ └── network/ │ │ └── impl/ │ │ ├── MovieApiService.kt │ │ ├── OkHttpInterceptors.kt │ │ ├── RemoteDataSourceImpl.kt │ │ └── di/ │ │ └── NetworkModule.kt │ ├── repository/ │ │ ├── api/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── data/ │ │ │ └── repository/ │ │ │ └── MovieRepository.kt │ │ └── impl/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── data/ │ │ └── repository/ │ │ └── impl/ │ │ ├── MovieRepositoryImpl.kt │ │ ├── di/ │ │ │ └── RepositoryModule.kt │ │ └── util/ │ │ └── SearchHelper.kt │ └── settings/ │ ├── api/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── data/ │ │ └── settings/ │ │ └── AppSettings.kt │ └── impl/ │ ├── .gitignore │ ├── build.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ └── soup/ │ └── movie/ │ └── data/ │ └── settings/ │ └── impl/ │ ├── AppSettingsImpl.kt │ └── di/ │ ├── DataSettingsModule.kt │ └── DataStoreModule.kt ├── feature/ │ ├── detail/ │ │ ├── api/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── feature/ │ │ │ └── detail/ │ │ │ └── DetailScreenKey.kt │ │ └── impl/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── feature/ │ │ └── detail/ │ │ └── impl/ │ │ ├── BoxOffice.kt │ │ ├── DetailContent.kt │ │ ├── DetailError.kt │ │ ├── DetailHeader.kt │ │ ├── DetailList.kt │ │ ├── DetailPoster.kt │ │ ├── DetailScreen.kt │ │ ├── DetailUiModel.kt │ │ ├── DetailViewModel.kt │ │ └── di/ │ │ └── FeatureDetailModule.kt │ ├── home/ │ │ ├── api/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── feature/ │ │ │ └── home/ │ │ │ ├── HomeComposableFactory.kt │ │ │ └── HomeScreenKey.kt │ │ └── impl/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── feature/ │ │ └── home/ │ │ └── impl/ │ │ ├── HomeComposableFactoryImpl.kt │ │ ├── HomeScreen.kt │ │ ├── HomeTabUiModel.kt │ │ ├── HomeViewModel.kt │ │ ├── TextUnit.kt │ │ ├── di/ │ │ │ └── FeatureHomeModule.kt │ │ ├── domain/ │ │ │ ├── AppSettingsExt.kt │ │ │ └── MovieFilter.kt │ │ ├── favorite/ │ │ │ ├── HomeFavoriteScreen.kt │ │ │ ├── HomeFavoriteViewModel.kt │ │ │ ├── MovieAgeBadge.kt │ │ │ ├── MovieAgeTag.kt │ │ │ ├── MovieDDayTag.kt │ │ │ └── MovieTextTag.kt │ │ ├── filter/ │ │ │ ├── HomeFilterAge.kt │ │ │ ├── HomeFilterCategory.kt │ │ │ ├── HomeFilterScreen.kt │ │ │ ├── HomeFilterTheater.kt │ │ │ ├── HomeFilterUiModel.kt │ │ │ ├── HomeFilterViewModel.kt │ │ │ └── TheaterFilterChip.kt │ │ ├── now/ │ │ │ ├── HomeNowList.kt │ │ │ └── HomeNowViewModel.kt │ │ ├── plan/ │ │ │ ├── HomePlanList.kt │ │ │ └── HomePlanViewModel.kt │ │ └── tab/ │ │ ├── CommonError.kt │ │ ├── ContentLoadingProgressBar.kt │ │ ├── HomeContentsScreen.kt │ │ ├── MovieList.kt │ │ └── NoMovieItems.kt │ ├── navigator/ │ │ ├── api/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── feature/ │ │ │ └── navigator/ │ │ │ ├── AppNavigator.kt │ │ │ ├── Destination.kt │ │ │ ├── EntryProviderInstaller.kt │ │ │ ├── MainNavigator.kt │ │ │ └── ScreenKey.kt │ │ └── impl/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── feature/ │ │ └── navigator/ │ │ └── impl/ │ │ ├── AppNavigatorImpl.kt │ │ └── di/ │ │ └── NavigatorModule.kt │ ├── notification/ │ │ ├── api/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── soup/ │ │ │ │ └── movie/ │ │ │ │ └── feature/ │ │ │ │ └── notification/ │ │ │ │ └── NotificationBuilder.kt │ │ │ └── res/ │ │ │ ├── values/ │ │ │ │ └── strings_notification.xml │ │ │ └── values-ko/ │ │ │ └── strings_notification.xml │ │ └── impl/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── feature/ │ │ └── notification/ │ │ └── impl/ │ │ ├── NotificationBuilderImpl.kt │ │ ├── NotificationChannels.kt │ │ ├── NotificationSpecs.kt │ │ └── di/ │ │ └── NotificationModule.kt │ ├── search/ │ │ ├── api/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── feature/ │ │ │ └── search/ │ │ │ └── SearchScreenKey.kt │ │ └── impl/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── feature/ │ │ └── search/ │ │ └── impl/ │ │ ├── SearchScreen.kt │ │ ├── SearchUiModel.kt │ │ ├── SearchViewModel.kt │ │ └── di/ │ │ └── FeatureSearchModule.kt │ ├── settings/ │ │ ├── api/ │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── java/ │ │ │ └── soup/ │ │ │ └── movie/ │ │ │ └── feature/ │ │ │ ├── settings/ │ │ │ │ └── SettingsScreenKey.kt │ │ │ └── theme/ │ │ │ ├── ThemeOption.kt │ │ │ └── ThemeOptionManager.kt │ │ └── impl/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── feature/ │ │ └── settings/ │ │ └── impl/ │ │ ├── di/ │ │ │ ├── FeatureSettingsModule.kt │ │ │ └── FeatureThemeModule.kt │ │ ├── home/ │ │ │ ├── SettingsScreen.kt │ │ │ ├── SettingsUiModel.kt │ │ │ └── SettingsViewModel.kt │ │ └── theme/ │ │ ├── ThemeOptionManagerImpl.kt │ │ ├── ThemeOptionScreen.kt │ │ ├── ThemeOptionStore.kt │ │ ├── ThemeOptionViewModel.kt │ │ ├── ThemeSettingExtensions.kt │ │ └── ThemeSettingItemUiModel.kt │ └── tasks/ │ ├── api/ │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── soup/ │ │ └── movie/ │ │ └── feature/ │ │ └── tasks/ │ │ ├── AnnounceOpenDateTasks.kt │ │ └── SyncOpenDateTasks.kt │ └── impl/ │ ├── .gitignore │ ├── build.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ └── soup/ │ └── movie/ │ └── feature/ │ └── tasks/ │ └── impl/ │ ├── AnnounceOpenDateTasksImpl.kt │ ├── AnnounceOpenDateUseCase.kt │ ├── AnnounceOpenDateWorker.kt │ ├── SyncOpenDateTasksImpl.kt │ ├── SyncOpenDateUseCase.kt │ ├── SyncOpenDateWorker.kt │ ├── WorkManagerInitializer.kt │ └── di/ │ ├── InitializerComponent.kt │ ├── InitializerDependencies.kt │ ├── TasksModule.kt │ └── WorkModule.kt ├── gradle/ │ ├── init.gradle.kts │ ├── libs.versions.toml │ ├── version.gradle │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── gradlew ├── gradlew.bat ├── macrobenchmark/ │ ├── .gitignore │ ├── build.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ └── soup/ │ └── movie/ │ └── macrobenchmark/ │ ├── BaselineProfileGenerator.kt │ └── StartupBenchmarks.kt ├── settings.gradle.kts ├── signing/ │ └── app-debug.jks ├── spotless/ │ └── copyright.kt ├── testing/ │ ├── .gitignore │ ├── build.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ └── soup/ │ └── movie/ │ └── testing/ │ ├── MovieTestRunner.kt │ ├── di/ │ │ ├── TestDispatcherModule.kt │ │ └── TestDispatchersModule.kt │ └── util/ │ └── TestDispatcherRule.kt └── version.properties ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ # https://editorconfig.org/ # This configuration is used by ktlint when spotless invokes it [*.{kt,kts}] ij_kotlin_allow_trailing_comma=true ij_kotlin_allow_trailing_comma_on_call_site=true ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: "[Bug] " labels: bug assignees: '' --- ## 현상 - ## Link - ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- ## 설명 - ## Link - none ================================================ FILE: .github/auto_assign.yml ================================================ # Set to true to add reviewers to pull requests addReviewers: true # Set to true to add assignees to pull requests addAssignees: false # A list of reviewers to be added to pull requests (GitHub user name) reviewers: - fornewid # A number of reviewers added to the pull request # Set 0 to add all the reviewers (default: 0) numberOfReviewers: 0 ================================================ FILE: .github/ci-gradle.properties ================================================ # # Copyright 2020 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # org.gradle.daemon=false org.gradle.parallel=true org.gradle.workers.max=2 kotlin.incremental=false ================================================ FILE: .github/workflows/build.yaml ================================================ name: Build & test on: push: branches: - develop paths-ignore: - '**.md' pull_request: paths-ignore: - '**.md' jobs: build: runs-on: ubuntu-latest timeout-minutes: 60 steps: - name: Checkout uses: actions/checkout@v3 - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - name: Set up JDK uses: actions/setup-java@v3 with: distribution: temurin java-version: 17 - name: Check dependencyGuard run: ./gradlew dependencyGuard - name: Check spotless run: ./gradlew spotlessCheck --init-script gradle/init.gradle.kts --stacktrace - name: Check lint run: ./gradlew lintDebug --stacktrace - name: Build all build type and flavor permutations run: ./gradlew assemble --stacktrace -x :macrobenchmark:collectNonMinifiedReleaseBaselineProfile -x :macrobenchmark:pixel6Api34NonMinifiedReleaseAndroidTest - name: Run local tests run: ./gradlew testDebug --stacktrace ================================================ FILE: .gitignore ================================================ # Built application files *.apk *.ap_ # Files for the ART/Dalvik VM *.dex # Java class files *.class # Generated files bin/ gen/ out/ # Gradle files .gradle/ build/ # Local configuration file (sdk path, etc) local.properties # Proguard folder generated by Eclipse proguard/ # Log Files *.log # Android Studio Navigation editor temp files .navigation/ # Android Studio captures folder captures/ # Intellij *.iml .idea/* .idea/caches .idea/codeStyles .idea/dictionaries .idea/libraries !.idea/icon.png !.idea/icon_dark.png # Keystore files signing/app-release.jks signing/key.properties # External native build folder generated in Android Studio 2.2 and later .externalNativeBuild # Freeline freeline.py freeline/ freeline_project_description.json ================================================ FILE: CHECK.md ================================================ # Check before PR ### Run all checks at once: ```bash ./check.sh ``` ### Run checks individually - dependencyGuard ```bash ./gradlew dependencyGuard ``` - spotless ```bash ./gradlew spotlessCheck --init-script gradle/init.gradle.kts ``` - lint ```bash ./gradlew lintDebug ``` ## Update baselines - dependencyGuard ```bash ./gradlew dependencyGuardBaseline ``` - spotless ```bash ./gradlew spotlessApply --init-script gradle/init.gradle.kts ``` ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2019 SOUP Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================

:movie_camera: 뭅 (Moop)


한국 멀티플렉스 극장의 현재상영작, 개봉예정작 정보를 모아주는 안드로이드 앱입니다.
iOS 프로젝트도 있습니다.


License API

## API Key Create `signing/key.properties` with the following values: ``` # DEBUG API MOOP_API_BASE_URL = https://moop-public-api.firebaseio.com/alpha/ ``` ## License ``` Copyright 2019 SOUP Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ``` ================================================ FILE: app/.gitignore ================================================ /build /release ================================================ FILE: app/build.gradle ================================================ plugins { id "moop.android.application" id "moop.android.compose" id "moop.android.hilt" id "org.jetbrains.kotlin.plugin.serialization" alias libs.plugins.dependencyGuard alias(libs.plugins.baselineprofile) } def useReleaseKeystore = rootProject.file("signing/app-release.jks").exists() android { namespace "soup.movie" defaultConfig { versionCode rootProject.ext.versionCode versionName rootProject.ext.versionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } signingConfigs { debug { storeFile rootProject.file("signing/app-debug.jks") storePassword "android" keyAlias "android" keyPassword "android" } release { if (useReleaseKeystore) { storeFile rootProject.file("signing/app-release.jks") storePassword propOrDef('storePassword', "") keyAlias propOrDef('keyAlias', "") keyPassword propOrDef('keyPassword', "") } } } buildTypes { debug { signingConfig signingConfigs.debug applicationIdSuffix ".debug" } benchmark { if (useReleaseKeystore) { signingConfig signingConfigs.release } else { signingConfig signingConfigs.debug } matchingFallbacks = ['release'] debuggable false } release { if (useReleaseKeystore) { signingConfig signingConfigs.release } else { signingConfig signingConfigs.debug } minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } testOptions { unitTests { includeAndroidResources = true } } lint { checkReleaseBuilds false } } dependencies { baselineProfile projects.macrobenchmark implementation projects.core.kotlin implementation projects.core.designsystem implementation projects.core.logger implementation projects.core.resources implementation projects.data.repository.api implementation projects.data.model implementation projects.feature.home.api runtimeOnly projects.feature.home.impl implementation projects.feature.detail.api runtimeOnly projects.feature.detail.impl implementation projects.feature.search.api runtimeOnly projects.feature.search.impl implementation projects.feature.settings.api runtimeOnly projects.feature.settings.impl implementation projects.feature.navigator.api runtimeOnly projects.feature.navigator.impl implementation projects.feature.notification.api runtimeOnly projects.feature.notification.impl implementation projects.feature.tasks.api runtimeOnly projects.feature.tasks.impl runtimeOnly projects.data.network.impl runtimeOnly projects.data.database.impl runtimeOnly projects.data.repository.impl runtimeOnly projects.data.settings.impl runtimeOnly projects.core.imageloading.impl implementation libs.kotlin.stdlib implementation libs.kotlin.serialization implementation libs.coroutines.core implementation libs.coroutines.android implementation libs.androidx.appcompat implementation libs.androidx.activity implementation libs.androidx.startup implementation libs.androidx.lifecycle.viewmodel implementation libs.androidx.lifecycle.runtime implementation libs.androidx.lifecycle.compiler implementation libs.androidx.navigation3.runtime implementation libs.androidx.navigation3.ui implementation libs.androidx.lifecycle.viewmodel.navigation3 implementation libs.androidx.activity.compose implementation libs.androidx.hilt.lifecycle.viewmodel.compose implementation libs.compose.foundation implementation libs.compose.ui implementation libs.compose.material3 implementation libs.compose.material3.adaptivenavigation implementation libs.compose.material3.adaptive.navigation3 implementation libs.compose.animation.graphics implementation libs.materialmotion.compose.core implementation libs.androidx.profileinstaller testImplementation projects.testing androidTestImplementation projects.testing androidTestImplementation libs.androidx.benchmark.macro.junit4 } dependencyGuard { // All dependencies included in Production Release APK configuration("releaseRuntimeClasspath") } task applyDependencyBaseline { dependsOn "dependencyGuardBaseline" } ================================================ FILE: app/dependencies/releaseRuntimeClasspath.txt ================================================ androidx.activity:activity-compose:1.12.1 androidx.activity:activity-ktx:1.12.1 androidx.activity:activity:1.12.1 androidx.annotation:annotation-experimental:1.5.1 androidx.annotation:annotation-jvm:1.9.1 androidx.annotation:annotation:1.9.1 androidx.appcompat:appcompat-resources:1.7.1 androidx.appcompat:appcompat:1.7.1 androidx.arch.core:core-common:2.2.0 androidx.arch.core:core-runtime:2.2.0 androidx.autofill:autofill:1.0.0 androidx.browser:browser:1.9.0 androidx.collection:collection-jvm:1.5.0 androidx.collection:collection-ktx:1.5.0 androidx.collection:collection:1.5.0 androidx.compose.animation:animation-android:1.10.0 androidx.compose.animation:animation-core-android:1.10.0 androidx.compose.animation:animation-core:1.10.0 androidx.compose.animation:animation-graphics-android:1.10.0 androidx.compose.animation:animation-graphics:1.10.0 androidx.compose.animation:animation:1.10.0 androidx.compose.foundation:foundation-android:1.10.0 androidx.compose.foundation:foundation-layout-android:1.10.0 androidx.compose.foundation:foundation-layout:1.10.0 androidx.compose.foundation:foundation:1.10.0 androidx.compose.material3.adaptive:adaptive-android:1.3.0-alpha05 androidx.compose.material3.adaptive:adaptive-layout-android:1.3.0-alpha05 androidx.compose.material3.adaptive:adaptive-layout:1.3.0-alpha05 androidx.compose.material3.adaptive:adaptive-navigation-android:1.3.0-alpha05 androidx.compose.material3.adaptive:adaptive-navigation3-android:1.3.0-alpha05 androidx.compose.material3.adaptive:adaptive-navigation3:1.3.0-alpha05 androidx.compose.material3.adaptive:adaptive-navigation:1.3.0-alpha05 androidx.compose.material3.adaptive:adaptive:1.3.0-alpha05 androidx.compose.material3:material3-adaptive-navigation-suite-android:1.4.0 androidx.compose.material3:material3-adaptive-navigation-suite:1.4.0 androidx.compose.material3:material3-android:1.4.0 androidx.compose.material3:material3:1.4.0 androidx.compose.material:material-android:1.10.0 androidx.compose.material:material-icons-core-android:1.7.8 androidx.compose.material:material-icons-core:1.7.8 androidx.compose.material:material-icons-extended-android:1.7.8 androidx.compose.material:material-icons-extended:1.7.8 androidx.compose.material:material-ripple-android:1.10.0 androidx.compose.material:material-ripple:1.10.0 androidx.compose.material:material:1.10.0 androidx.compose.runtime:runtime-android:1.10.0 androidx.compose.runtime:runtime-annotation-android:1.10.0 androidx.compose.runtime:runtime-annotation:1.10.0 androidx.compose.runtime:runtime-retain-android:1.10.0 androidx.compose.runtime:runtime-retain:1.10.0 androidx.compose.runtime:runtime-saveable-android:1.10.0 androidx.compose.runtime:runtime-saveable:1.10.0 androidx.compose.runtime:runtime:1.10.0 androidx.compose.ui:ui-android:1.10.0 androidx.compose.ui:ui-geometry-android:1.10.0 androidx.compose.ui:ui-geometry:1.10.0 androidx.compose.ui:ui-graphics-android:1.10.0 androidx.compose.ui:ui-graphics:1.10.0 androidx.compose.ui:ui-text-android:1.10.0 androidx.compose.ui:ui-text:1.10.0 androidx.compose.ui:ui-tooling-preview-android:1.10.0 androidx.compose.ui:ui-tooling-preview:1.10.0 androidx.compose.ui:ui-unit-android:1.10.0 androidx.compose.ui:ui-unit:1.10.0 androidx.compose.ui:ui-util-android:1.10.0 androidx.compose.ui:ui-util:1.10.0 androidx.compose.ui:ui:1.10.0 androidx.compose:compose-bom:2025.12.00 androidx.concurrent:concurrent-futures-ktx:1.1.0 androidx.concurrent:concurrent-futures:1.1.0 androidx.core:core-ktx:1.17.0 androidx.core:core-viewtree:1.0.0 androidx.core:core:1.17.0 androidx.cursoradapter:cursoradapter:1.0.0 androidx.customview:customview-poolingcontainer:1.0.0 androidx.customview:customview:1.0.0 androidx.datastore:datastore-android:1.2.0 androidx.datastore:datastore-core-android:1.2.0 androidx.datastore:datastore-core-okio-jvm:1.2.0 androidx.datastore:datastore-core-okio:1.2.0 androidx.datastore:datastore-core:1.2.0 androidx.datastore:datastore-preferences-android:1.2.0 androidx.datastore:datastore-preferences-core-android:1.2.0 androidx.datastore:datastore-preferences-core:1.2.0 androidx.datastore:datastore-preferences-external-protobuf:1.2.0 androidx.datastore:datastore-preferences-proto:1.2.0 androidx.datastore:datastore-preferences:1.2.0 androidx.datastore:datastore:1.2.0 androidx.documentfile:documentfile:1.0.0 androidx.drawerlayout:drawerlayout:1.0.0 androidx.dynamicanimation:dynamicanimation:1.0.0 androidx.emoji2:emoji2-views-helper:1.4.0 androidx.emoji2:emoji2:1.4.0 androidx.exifinterface:exifinterface:1.4.1 androidx.fragment:fragment:1.5.4 androidx.graphics:graphics-path:1.0.1 androidx.hilt:hilt-common:1.3.0 androidx.hilt:hilt-lifecycle-viewmodel-compose:1.3.0 androidx.hilt:hilt-lifecycle-viewmodel:1.3.0 androidx.hilt:hilt-work:1.3.0 androidx.interpolator:interpolator:1.0.0 androidx.legacy:legacy-support-core-utils:1.0.0 androidx.lifecycle:lifecycle-common-java8:2.10.0 androidx.lifecycle:lifecycle-common-jvm:2.10.0 androidx.lifecycle:lifecycle-common:2.10.0 androidx.lifecycle:lifecycle-livedata-core-ktx:2.10.0 androidx.lifecycle:lifecycle-livedata-core:2.10.0 androidx.lifecycle:lifecycle-livedata:2.10.0 androidx.lifecycle:lifecycle-process:2.10.0 androidx.lifecycle:lifecycle-runtime-android:2.10.0 androidx.lifecycle:lifecycle-runtime-compose-android:2.10.0 androidx.lifecycle:lifecycle-runtime-compose:2.10.0 androidx.lifecycle:lifecycle-runtime-ktx-android:2.10.0 androidx.lifecycle:lifecycle-runtime-ktx:2.10.0 androidx.lifecycle:lifecycle-runtime:2.10.0 androidx.lifecycle:lifecycle-service:2.10.0 androidx.lifecycle:lifecycle-viewmodel-android:2.10.0 androidx.lifecycle:lifecycle-viewmodel-compose-android:2.10.0 androidx.lifecycle:lifecycle-viewmodel-compose:2.10.0 androidx.lifecycle:lifecycle-viewmodel-ktx:2.10.0 androidx.lifecycle:lifecycle-viewmodel-navigation3-android:2.10.0 androidx.lifecycle:lifecycle-viewmodel-navigation3:2.10.0 androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.10.0 androidx.lifecycle:lifecycle-viewmodel-savedstate:2.10.0 androidx.lifecycle:lifecycle-viewmodel:2.10.0 androidx.loader:loader:1.0.0 androidx.localbroadcastmanager:localbroadcastmanager:1.0.0 androidx.navigation3:navigation3-runtime-android:1.0.0 androidx.navigation3:navigation3-runtime:1.0.0 androidx.navigation3:navigation3-ui-android:1.0.0 androidx.navigation3:navigation3-ui:1.0.0 androidx.navigationevent:navigationevent-android:1.0.1 androidx.navigationevent:navigationevent-compose-android:1.0.1 androidx.navigationevent:navigationevent-compose:1.0.1 androidx.navigationevent:navigationevent:1.0.1 androidx.print:print:1.0.0 androidx.profileinstaller:profileinstaller:1.4.1 androidx.resourceinspection:resourceinspection-annotation:1.0.1 androidx.room:room-common-jvm:2.8.4 androidx.room:room-common:2.8.4 androidx.room:room-ktx:2.8.4 androidx.room:room-runtime-android:2.8.4 androidx.room:room-runtime:2.8.4 androidx.savedstate:savedstate-android:1.4.0 androidx.savedstate:savedstate-compose-android:1.4.0 androidx.savedstate:savedstate-compose:1.4.0 androidx.savedstate:savedstate-ktx:1.4.0 androidx.savedstate:savedstate:1.4.0 androidx.sqlite:sqlite-android:2.6.2 androidx.sqlite:sqlite-framework-android:2.6.2 androidx.sqlite:sqlite-framework:2.6.2 androidx.sqlite:sqlite:2.6.2 androidx.startup:startup-runtime:1.2.0 androidx.tracing:tracing-ktx:1.2.0 androidx.tracing:tracing:1.2.0 androidx.transition:transition:1.6.0 androidx.vectordrawable:vectordrawable-animated:1.1.0 androidx.vectordrawable:vectordrawable:1.1.0 androidx.versionedparcelable:versionedparcelable:1.1.1 androidx.viewpager:viewpager:1.0.0 androidx.window:window-core-android:1.5.1 androidx.window:window-core:1.5.1 androidx.window:window:1.5.1 androidx.work:work-runtime:2.11.0 com.google.accompanist:accompanist-drawablepainter:0.37.3 com.google.code.findbugs:jsr305:3.0.2 com.google.dagger:dagger-lint-aar:2.57.2 com.google.dagger:dagger:2.57.2 com.google.dagger:hilt-android:2.57.2 com.google.dagger:hilt-core:2.57.2 com.google.guava:listenablefuture:1.0 com.jakewharton.timber:timber:5.0.1 com.squareup.okhttp3:okhttp:4.12.0 com.squareup.okio:okio-jvm:3.15.0 com.squareup.okio:okio:3.15.0 com.squareup.retrofit2:converter-kotlinx-serialization:3.0.0 com.squareup.retrofit2:retrofit:3.0.0 com.webtoonscorp.android:readmore-foundation:1.9.0 com.webtoonscorp.android:readmore-material:1.9.0 io.coil-kt.coil3:coil-android:3.3.0 io.coil-kt.coil3:coil-compose-android:3.3.0 io.coil-kt.coil3:coil-compose-core-android:3.3.0 io.coil-kt.coil3:coil-compose-core:3.3.0 io.coil-kt.coil3:coil-compose:3.3.0 io.coil-kt.coil3:coil-core-android:3.3.0 io.coil-kt.coil3:coil-core:3.3.0 io.coil-kt.coil3:coil-network-core-android:3.3.0 io.coil-kt.coil3:coil-network-core:3.3.0 io.coil-kt.coil3:coil-network-okhttp-jvm:3.3.0 io.coil-kt.coil3:coil-network-okhttp:3.3.0 io.coil-kt.coil3:coil:3.3.0 io.github.fornewid:material-motion-compose-core-android:2.0.1 io.github.fornewid:material-motion-compose-core:2.0.1 io.github.fornewid:photo-compose:1.0.1 jakarta.inject:jakarta.inject-api:2.0.1 javax.inject:javax.inject:1 org.jetbrains.androidx.lifecycle:lifecycle-common:2.9.5 org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.9.5 org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.9.5 org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.9.5 org.jetbrains.androidx.savedstate:savedstate-compose:1.3.5 org.jetbrains.androidx.savedstate:savedstate:1.3.5 org.jetbrains.compose.animation:animation-core:1.8.2 org.jetbrains.compose.animation:animation:1.8.2 org.jetbrains.compose.annotation-internal:annotation:1.8.2 org.jetbrains.compose.collection-internal:collection:1.8.2 org.jetbrains.compose.foundation:foundation-layout:1.8.2 org.jetbrains.compose.foundation:foundation:1.8.2 org.jetbrains.compose.runtime:runtime-saveable:1.9.2 org.jetbrains.compose.runtime:runtime:1.9.2 org.jetbrains.compose.ui:ui-geometry:1.8.2 org.jetbrains.compose.ui:ui-graphics:1.8.2 org.jetbrains.compose.ui:ui-text:1.8.2 org.jetbrains.compose.ui:ui-unit:1.8.2 org.jetbrains.compose.ui:ui-util:1.8.2 org.jetbrains.compose.ui:ui:1.8.2 org.jetbrains.kotlin:kotlin-stdlib-common:2.2.21 org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.2.21 org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.2.21 org.jetbrains.kotlin:kotlin-stdlib:2.2.21 org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2 org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.2 org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 org.jetbrains.kotlinx:kotlinx-serialization-bom:1.9.0 org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.9.0 org.jetbrains.kotlinx:kotlinx-serialization-core:1.9.0 org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.9.0 org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0 org.jetbrains:annotations:23.0.0 org.jspecify:jspecify:1.0.0 ================================================ FILE: app/proguard-rules.pro ================================================ # Add project specific ProGuard rules here. # You can control the set of applied configuration files using the # proguardFiles setting in build.gradle. # # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html # If your project uses WebView with JS, uncomment the following # and specify the fully qualified class name to the JavaScript interface # class: #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; #} # Uncomment this to preserve the line number information for # debugging stack traces. #-keepattributes SourceFile,LineNumberTable # If you keep the line number information, uncomment this to # hide the original source file name. #-renamesourcefileattribute SourceFile # AndroidX + support library -dontwarn android.support.** -dontwarn androidx.** # Crashlytics -keep class com.crashlytics.** { *; } -dontwarn com.crashlytics.** # Dagger2 -dontwarn com.google.errorprone.annotations.* # For kotlin-reflect -dontwarn org.jetbrains.annotations.** -keep class kotlin.Metadata { *; } # For kotlinx.serialization -keepattributes *Annotation*, InnerClasses -dontnote kotlinx.serialization.SerializationKt -keep,includedescriptorclasses class soup.movie.**$$serializer { *; } -keepclassmembers class soup.movie.** { *** Companion; } -keepclasseswithmembers class soup.movie.** { kotlinx.serialization.KSerializer serializer(...); } ================================================ FILE: app/src/androidTest/java/soup/movie/ExampleInstrumentedTest.kt ================================================ /* * Copyright 2021 SOUP * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package soup.movie import androidx.test.platform.app.InstrumentationRegistry import androidx.test.runner.AndroidJUnit4 import org.junit.Assert import org.junit.Test import org.junit.runner.RunWith /** * Instrumented test, which will execute on an Android device. * * @see [Testing documentation](http://d.android.com/tools/testing) */ @RunWith(AndroidJUnit4::class) class ExampleInstrumentedTest { @Test fun useAppContext() { // Context of the app under test. val appContext = InstrumentationRegistry.getInstrumentation().targetContext Assert.assertEquals("soup.movie", appContext.packageName) } } ================================================ FILE: app/src/debug/res/drawable/ic_launcher_foreground.xml ================================================ ================================================ FILE: app/src/debug/res/drawable/ic_launcher_foreground_dark.xml ================================================ ================================================ FILE: app/src/debug/res/drawable/ic_launcher_monochrome.xml ================================================ ================================================ FILE: app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml ================================================ ================================================ FILE: app/src/main/AndroidManifest.xml ================================================ ================================================ FILE: app/src/main/java/soup/movie/MovieApplication.kt ================================================ /* * Copyright 2021 SOUP * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package soup.movie import android.app.Application import dagger.hilt.android.HiltAndroidApp import soup.movie.feature.theme.ThemeOptionManager import javax.inject.Inject @HiltAndroidApp class MovieApplication : Application() { @Inject lateinit var themeOptionManager: ThemeOptionManager override fun onCreate() { super.onCreate() themeOptionManager.initialize() } } ================================================ FILE: app/src/main/java/soup/movie/di/AppModule.kt ================================================ /* * Copyright 2025 SOUP * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package soup.movie.di import dagger.Binds import dagger.Module import dagger.hilt.InstallIn import dagger.hilt.android.components.ActivityRetainedComponent import soup.movie.feature.navigator.Navigator import soup.movie.ui.main.NavigatorImpl @Module @InstallIn(ActivityRetainedComponent::class) interface AppModule { @Binds fun bindsNavigator( impl: NavigatorImpl, ): Navigator } ================================================ FILE: app/src/main/java/soup/movie/di/ApplicationModule.kt ================================================ /* * Copyright 2021 SOUP * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package soup.movie.di import dagger.Binds import dagger.Module import dagger.hilt.InstallIn import dagger.hilt.components.SingletonComponent import soup.movie.feature.navigator.MainNavigator @Module @InstallIn(SingletonComponent::class) interface ApplicationModule { @Binds fun bindsMainNavigator( impl: MainNavigatorImpl, ): MainNavigator } ================================================ FILE: app/src/main/java/soup/movie/di/MainNavigatorImpl.kt ================================================ /* * Copyright 2023 SOUP * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package soup.movie.di import android.content.Context import android.content.Intent import dagger.hilt.android.qualifiers.ApplicationContext import soup.movie.feature.navigator.Destination import soup.movie.feature.navigator.MainNavigator import soup.movie.ui.main.MainActivity import javax.inject.Inject class MainNavigatorImpl @Inject constructor( @ApplicationContext private val context: Context, ) : MainNavigator { override fun createIntent(destination: Destination.Main): Intent { return Intent(context, MainActivity::class.java) } } ================================================ FILE: app/src/main/java/soup/movie/startup/LoggerInitializer.kt ================================================ /* * Copyright 2021 SOUP * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package soup.movie.startup import android.content.Context import androidx.startup.Initializer import soup.movie.buildconfig.BuildConfig import soup.movie.log.DebugTree import soup.movie.log.Logger class LoggerInitializer : Initializer { override fun create(context: Context) { if (BuildConfig.DEBUG) { Logger.plant(DebugTree()) } } override fun dependencies(): List>> { return emptyList() } } ================================================ FILE: app/src/main/java/soup/movie/ui/main/MainActivity.kt ================================================ /* * Copyright 2021 SOUP * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package soup.movie.ui.main import android.os.Bundle import androidx.activity.compose.setContent import androidx.activity.viewModels import androidx.appcompat.app.AppCompatActivity import androidx.compose.animation.graphics.res.animatedVectorResource import androidx.compose.animation.graphics.res.rememberAnimatedVectorPainter import androidx.compose.animation.graphics.vector.AnimatedImageVector import androidx.compose.material3.Icon import androidx.compose.material3.Text import androidx.compose.material3.adaptive.ExperimentalMaterial3AdaptiveApi import androidx.compose.material3.adaptive.currentWindowAdaptiveInfo import androidx.compose.material3.adaptive.layout.calculatePaneScaffoldDirective import androidx.compose.material3.adaptive.navigation.BackNavigationBehavior import androidx.compose.material3.adaptive.navigation3.rememberListDetailSceneStrategy import androidx.compose.material3.adaptive.navigationsuite.NavigationSuiteScaffold import androidx.compose.runtime.remember import androidx.compose.ui.res.stringResource import androidx.compose.ui.unit.dp import androidx.core.view.WindowCompat import androidx.navigation3.runtime.NavKey import androidx.navigation3.runtime.entryProvider import androidx.navigation3.scene.DialogSceneStrategy import androidx.navigation3.ui.NavDisplay import dagger.hilt.android.AndroidEntryPoint import soup.compose.material.motion.animation.materialSharedAxisZ import soup.movie.R import soup.movie.core.designsystem.icon.MovieIcons import soup.movie.core.designsystem.theme.MovieTheme import soup.movie.feature.home.HomeScreenKey import soup.movie.feature.navigator.EntryProviderInstaller import javax.inject.Inject @AndroidEntryPoint class MainActivity : AppCompatActivity() { @Inject lateinit var navigator: NavigatorImpl @Inject lateinit var entryProviderScopes: Set<@JvmSuppressWildcards EntryProviderInstaller> private val viewModel: MainViewModel by viewModels() @OptIn(ExperimentalMaterial3AdaptiveApi::class) override fun onCreate(savedInstanceState: Bundle?) { setTheme(R.style.Theme_Moop) super.onCreate(savedInstanceState) WindowCompat.setDecorFitsSystemWindows(window, false) setContent { MovieTheme { NavigationSuiteScaffold( navigationSuiteItems = { TOP_LEVEL_ROUTES.forEach { (key, value) -> val isSelected = key == navigator.state.topLevelRoute item( icon = { Icon( painter = rememberAnimatedVectorPainter( animatedImageVector = AnimatedImageVector.animatedVectorResource(value.icon), atEnd = isSelected, ), contentDescription = null, ) }, label = { Text(text = stringResource(value.description)) }, selected = isSelected, onClick = { navigator.navigate(key) }, ) } }, ) { val dialogSceneStrategy = remember { DialogSceneStrategy() } val directive = calculatePaneScaffoldDirective(currentWindowAdaptiveInfo()) .copy(horizontalPartitionSpacerSize = 0.dp) NavDisplay( entries = navigator.state.toEntries( entryProvider = entryProvider { entryProviderScopes.forEach { builder -> this.builder() } }, ), onBack = { navigator.goBack() }, sceneStrategy = rememberListDetailSceneStrategy( backNavigationBehavior = BackNavigationBehavior.PopLatest, directive = directive, ) then dialogSceneStrategy, transitionSpec = { materialSharedAxisZ(forward = true) }, popTransitionSpec = { materialSharedAxisZ(forward = false) }, predictivePopTransitionSpec = { materialSharedAxisZ(forward = false) }, ) } } } viewModel.onInit() } } private val TOP_LEVEL_ROUTES = mapOf( HomeScreenKey.Home to NavBarItem(icon = MovieIcons.AvdHomeNowSelected, description = soup.movie.resources.R.string.menu_home), HomeScreenKey.Favorite to NavBarItem(icon = MovieIcons.AvdFavoriteSelected, description = soup.movie.resources.R.string.menu_favorite), ) data class NavBarItem( val icon: Int, val description: Int, ) ================================================ FILE: app/src/main/java/soup/movie/ui/main/MainViewModel.kt ================================================ /* * Copyright 2021 SOUP * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package soup.movie.ui.main import androidx.lifecycle.ViewModel import androidx.lifecycle.viewModelScope import dagger.hilt.android.lifecycle.HiltViewModel import kotlinx.coroutines.launch import soup.movie.feature.tasks.AnnounceOpenDateTasks import soup.movie.feature.tasks.SyncOpenDateTasks import javax.inject.Inject @HiltViewModel class MainViewModel @Inject constructor( private val announceOpenDateTasks: AnnounceOpenDateTasks, private val syncOpenDateTasks: SyncOpenDateTasks, ) : ViewModel() { fun onInit() { viewModelScope.launch { announceOpenDateTasks.fetch() syncOpenDateTasks.fetch() } } } ================================================ FILE: app/src/main/java/soup/movie/ui/main/NavigationState.kt ================================================ /* * Copyright 2025 SOUP * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package soup.movie.ui.main import androidx.compose.runtime.Composable import androidx.compose.runtime.getValue import androidx.compose.runtime.mutableStateListOf import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.setValue import androidx.compose.runtime.snapshots.SnapshotStateList import androidx.compose.runtime.toMutableStateList import androidx.lifecycle.viewmodel.navigation3.rememberViewModelStoreNavEntryDecorator import androidx.navigation3.runtime.NavEntry import androidx.navigation3.runtime.NavEntryDecorator import androidx.navigation3.runtime.NavKey import androidx.navigation3.runtime.rememberDecoratedNavEntries import androidx.navigation3.runtime.rememberSaveableStateHolderNavEntryDecorator import soup.movie.feature.home.HomeScreenKey import javax.inject.Inject class NavigationState @Inject constructor() { val startRoute: NavKey = HomeScreenKey.Home var topLevelRoute: NavKey by mutableStateOf(startRoute) val backStacks: Map> = mapOf( HomeScreenKey.Home to mutableStateListOf(HomeScreenKey.Home), HomeScreenKey.Favorite to mutableStateListOf(HomeScreenKey.Favorite), ) val stacksInUse: List get() = if (topLevelRoute == startRoute) { listOf(startRoute) } else { listOf(startRoute, topLevelRoute) } } @Composable fun NavigationState.toEntries( entryDecorators: List> = listOf( rememberSaveableStateHolderNavEntryDecorator(), rememberViewModelStoreNavEntryDecorator(), ), entryProvider: (key: NavKey) -> NavEntry, ): SnapshotStateList> { val decoratedEntries = backStacks.mapValues { (_, stack) -> rememberDecoratedNavEntries( backStack = stack, entryDecorators = entryDecorators, entryProvider = entryProvider, ) } return stacksInUse .flatMap { decoratedEntries[it] ?: emptyList() } .toMutableStateList() } ================================================ FILE: app/src/main/java/soup/movie/ui/main/NavigatorImpl.kt ================================================ /* * Copyright 2025 SOUP * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package soup.movie.ui.main import androidx.navigation3.runtime.NavKey import dagger.hilt.android.scopes.ActivityRetainedScoped import soup.movie.feature.navigator.Navigator import javax.inject.Inject @ActivityRetainedScoped class NavigatorImpl @Inject constructor( val state: NavigationState, ) : Navigator { override fun navigate(route: NavKey) { if (route in state.backStacks.keys) { if (route == state.topLevelRoute) { state.backStacks[route]?.let { it.removeRange(1, it.size) } } else { state.topLevelRoute = route } } else { state.backStacks[state.topLevelRoute]?.add(route) } } override fun goBack() { val currentStack = state.backStacks[state.topLevelRoute] ?: error("Stack for ${state.topLevelRoute} not found") val currentRoute = currentStack.last() if (currentRoute == state.topLevelRoute) { state.topLevelRoute = state.startRoute } else { currentStack.removeLastOrNull() } } } ================================================ FILE: app/src/main/res/drawable/ic_launcher_foreground.xml ================================================ ================================================ FILE: app/src/main/res/drawable/ic_launcher_foreground_dark.xml ================================================ ================================================ FILE: app/src/main/res/drawable/ic_launcher_monochrome.xml ================================================ ================================================ FILE: app/src/main/res/drawable/ic_splash.xml ================================================ ================================================ FILE: app/src/main/res/drawable/icon_v0.xml ================================================ ================================================ FILE: app/src/main/res/drawable/icon_v1.xml ================================================ ================================================ FILE: app/src/main/res/drawable/icon_v1_1.xml ================================================ ================================================ FILE: app/src/main/res/drawable/icon_v1_2.xml ================================================ ================================================ FILE: app/src/main/res/drawable/icon_v1_3.xml ================================================ ================================================ FILE: app/src/main/res/drawable/icon_v1_4.xml ================================================ ================================================ FILE: app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml ================================================ ================================================ FILE: app/src/main/res/mipmap-night-anydpi-v26/ic_launcher.xml ================================================ ================================================ FILE: app/src/main/res/values/colors.xml ================================================ #FFFFFF #000000 ================================================ FILE: app/src/main/res/values/dimens.xml ================================================ 48dp ================================================ FILE: app/src/main/res/values/strings.xml ================================================ Moop Theater Theater Theater ================================================ FILE: app/src/main/res/values/strings_no_translate.xml ================================================ TheaterMap ================================================ FILE: app/src/main/res/values/sys_ui.xml ================================================ @color/transparent true @color/system_ui_scrim_dark false #B3FFFFFF #40000000 #00FFFFFF ================================================ FILE: app/src/main/res/values/themes.xml ================================================ ================================================ FILE: app/src/main/res/values-ko/strings.xml ================================================ 주변극장 주변극장 주변극장 ================================================ FILE: app/src/main/res/values-night/sys_ui.xml ================================================ @color/transparent false #2EFFFFFF #99000000 #00000000 ================================================ FILE: app/src/main/res/values-notnight-v27/sys_ui.xml ================================================ @color/system_ui_scrim_light true ================================================ FILE: app/src/main/res/values-v27/themes.xml ================================================