Showing preview only (7,510K chars total). Download the full file or copy to clipboard to get everything.
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
================================================
<p align="center">
<img height="200" src='https://github.com/fornewid/Moop-Android/blob/develop/app/src/main/ic_launcher-graphic.png'/>
</p>
<h1 align="center">:movie_camera: 뭅 (Moop)</h1><br/>
<p align="center">
한국 멀티플렉스 극장의 현재상영작, 개봉예정작 정보를 모아주는 안드로이드 앱입니다.<br/>
<a href="https://github.com/kor45cw/Moop-iOS" target="_blank">iOS 프로젝트</a>도 있습니다.
</p>
</br>
<p align="center">
<a href="https://opensource.org/licenses/Apache-2.0"><img alt="License" src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"/></a>
<a href='https://developer.android.com'><img height="20px" src='http://img.shields.io/badge/platform-android-green.svg'/></a>
<a href="https://android-arsenal.com/api?level=23"><img alt="API" src="https://img.shields.io/badge/API-23%2B-brightgreen.svg?style=flat"/></a>
</p>
## 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
================================================
<!--
Copyright (C) 2015 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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="48"
android:viewportHeight="48">
<path
android:fillColor="#FFFFFF"
android:pathData="M0,0L48,0L0,48z" />
<path
android:fillColor="#EEEEEE"
android:pathData="M48,48L48,0L0,48z" />
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8">
<path
android:fillAlpha="0.33"
android:fillColor="#FFFFFF"
android:pathData="M58,58L58,39L34.0,14.0L14.0,34.0L39,58z" />
<path
android:fillColor="#64B5F6"
android:pathData="M24.0,24.0c0.0,0.0 0.0,2.2 0.0,5.0s0.0,5.0 0.0,5.0l10.0,-10.0L34.0,14.0L24.0,24.0z" />
<path
android:fillColor="#2196F3"
android:pathData="M24.0,24.0L14.0,14.0l0.0,10.0l10.0,10.0c0.0,0.0 0.0,-2.2 0.0,-5.0S24.0,24.0 24.0,24.0z" />
<path
android:fillColor="#1976D2"
android:pathData="M14.0,34.0l10.0,0.0 -10.0,-10.0z" />
<path
android:fillColor="#1976D2"
android:pathData="M34.0,34.0l0.0,-10.0 -10.0,10.0z" />
<path
android:fillColor="#FFFFFF"
android:pathData="M14,34m -4, 0a 4,4 0 1,0 8,0 a 4,4 0 1,0 -8,0z" />
<group
android:scaleX="0.52"
android:scaleY="0.52"
android:translateX="2"
android:translateY="22"
android:pivotX="12"
android:pivotY="12">
<path
android:fillColor="#FFFFFF"
android:pathData="M22.42,11.34l-1.86,-2.12 0.26,-2.81c0.05,-0.5 -0.29,-0.96 -0.77,-1.07l-2.76,-0.63 -1.44,-2.43c-0.26,-0.43 -0.79,-0.61 -1.25,-0.41L12,3 9.41,1.89c-0.46,-0.2 -1,-0.02 -1.25,0.41L6.71,4.72l-2.75,0.62c-0.49,0.11 -0.83,0.56 -0.78,1.07l0.26,2.8 -1.86,2.13c-0.33,0.38 -0.33,0.94 0,1.32l1.86,2.12 -0.26,2.82c-0.05,0.5 0.29,0.96 0.77,1.07l2.76,0.63 1.44,2.42c0.26,0.43 0.79,0.61 1.26,0.41L12,21l2.59,1.11c0.46,0.2 1,0.02 1.25,-0.41l1.44,-2.43 2.76,-0.63c0.49,-0.11 0.82,-0.57 0.77,-1.07l-0.26,-2.81 1.86,-2.12c0.34,-0.36 0.34,-0.92 0.01,-1.3zM13,17h-2v-2h2v2zM12,13c-0.55,0 -1,-0.45 -1,-1L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4c0,0.55 -0.45,1 -1,1z"/>
</group>
<group
android:scaleX="0.4"
android:scaleY="0.4"
android:translateX="2"
android:translateY="22"
android:pivotX="12"
android:pivotY="12">
<path
android:fillColor="#F44336"
android:pathData="M22.42,11.34l-1.86,-2.12 0.26,-2.81c0.05,-0.5 -0.29,-0.96 -0.77,-1.07l-2.76,-0.63 -1.44,-2.43c-0.26,-0.43 -0.79,-0.61 -1.25,-0.41L12,3 9.41,1.89c-0.46,-0.2 -1,-0.02 -1.25,0.41L6.71,4.72l-2.75,0.62c-0.49,0.11 -0.83,0.56 -0.78,1.07l0.26,2.8 -1.86,2.13c-0.33,0.38 -0.33,0.94 0,1.32l1.86,2.12 -0.26,2.82c-0.05,0.5 0.29,0.96 0.77,1.07l2.76,0.63 1.44,2.42c0.26,0.43 0.79,0.61 1.26,0.41L12,21l2.59,1.11c0.46,0.2 1,0.02 1.25,-0.41l1.44,-2.43 2.76,-0.63c0.49,-0.11 0.82,-0.57 0.77,-1.07l-0.26,-2.81 1.86,-2.12c0.34,-0.36 0.34,-0.92 0.01,-1.3zM13,17h-2v-2h2v2zM12,13c-0.55,0 -1,-0.45 -1,-1L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4c0,0.55 -0.45,1 -1,1z"/>
</group>
</group>
</vector>
================================================
FILE: app/src/debug/res/drawable/ic_launcher_foreground_dark.xml
================================================
<!--
Copyright (C) 2015 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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="48"
android:viewportHeight="48">
<path
android:fillColor="#666666"
android:pathData="M0,0L48,0L0,48z" />
<path
android:fillColor="#444444"
android:pathData="M48,48L48,0L0,48z" />
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8">
<path
android:fillAlpha="0.33"
android:fillColor="#555555"
android:pathData="M58,58L58,39L34.0,14.0L14.0,34.0L39,58z" />
<path
android:fillColor="#90c9f9"
android:pathData="M24.0,24.0c0.0,0.0 0.0,2.2 0.0,5.0s0.0,5.0 0.0,5.0l10.0,-10.0L34.0,14.0L24.0,24.0z" />
<path
android:fillColor="#42a4f5"
android:pathData="M24.0,24.0L14.0,14.0l0.0,10.0l10.0,10.0c0.0,0.0 0.0,-2.2 0.0,-5.0S24.0,24.0 24.0,24.0z" />
<path
android:fillColor="#1e87e5"
android:pathData="M14.0,34.0l10.0,0.0 -10.0,-10.0z" />
<path
android:fillColor="#1e87e5"
android:pathData="M34.0,34.0l0.0,-10.0 -10.0,10.0z" />
<group
android:scaleX="0.52"
android:scaleY="0.52"
android:translateX="2"
android:translateY="22"
android:pivotX="12"
android:pivotY="12">
<path
android:fillColor="#666666"
android:pathData="M22.42,11.34l-1.86,-2.12 0.26,-2.81c0.05,-0.5 -0.29,-0.96 -0.77,-1.07l-2.76,-0.63 -1.44,-2.43c-0.26,-0.43 -0.79,-0.61 -1.25,-0.41L12,3 9.41,1.89c-0.46,-0.2 -1,-0.02 -1.25,0.41L6.71,4.72l-2.75,0.62c-0.49,0.11 -0.83,0.56 -0.78,1.07l0.26,2.8 -1.86,2.13c-0.33,0.38 -0.33,0.94 0,1.32l1.86,2.12 -0.26,2.82c-0.05,0.5 0.29,0.96 0.77,1.07l2.76,0.63 1.44,2.42c0.26,0.43 0.79,0.61 1.26,0.41L12,21l2.59,1.11c0.46,0.2 1,0.02 1.25,-0.41l1.44,-2.43 2.76,-0.63c0.49,-0.11 0.82,-0.57 0.77,-1.07l-0.26,-2.81 1.86,-2.12c0.34,-0.36 0.34,-0.92 0.01,-1.3z"/>
</group>
<group
android:scaleX="0.4"
android:scaleY="0.4"
android:translateX="2"
android:translateY="22"
android:pivotX="12"
android:pivotY="12">
<path
android:fillColor="#F44336"
android:pathData="M22.42,11.34l-1.86,-2.12 0.26,-2.81c0.05,-0.5 -0.29,-0.96 -0.77,-1.07l-2.76,-0.63 -1.44,-2.43c-0.26,-0.43 -0.79,-0.61 -1.25,-0.41L12,3 9.41,1.89c-0.46,-0.2 -1,-0.02 -1.25,0.41L6.71,4.72l-2.75,0.62c-0.49,0.11 -0.83,0.56 -0.78,1.07l0.26,2.8 -1.86,2.13c-0.33,0.38 -0.33,0.94 0,1.32l1.86,2.12 -0.26,2.82c-0.05,0.5 0.29,0.96 0.77,1.07l2.76,0.63 1.44,2.42c0.26,0.43 0.79,0.61 1.26,0.41L12,21l2.59,1.11c0.46,0.2 1,0.02 1.25,-0.41l1.44,-2.43 2.76,-0.63c0.49,-0.11 0.82,-0.57 0.77,-1.07l-0.26,-2.81 1.86,-2.12c0.34,-0.36 0.34,-0.92 0.01,-1.3zM13,17h-2v-2h2v2zM12,13c-0.55,0 -1,-0.45 -1,-1L11,8c0,-0.55 0.45,-1 1,-1s1,0.45 1,1v4c0,0.55 -0.45,1 -1,1z"/>
</group>
</group>
</vector>
================================================
FILE: app/src/debug/res/drawable/ic_launcher_monochrome.xml
================================================
<!--
Copyright (C) 2015 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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="48"
android:viewportHeight="48">
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8">
<path
android:fillColor="#000000"
android:pathData="M24,24L14,14L14,29a 5,5 0 0,1 5,5L34,34L34,14z" />
<path
android:fillColor="#000000"
android:pathData="M14,34m -4, 0a 4,4 0 1,0 8,0 a 4,4 0 1,0 -8,0zM14.5,36h-1v-1h1v1zM14.5,34h-1v-2h1v1z" />
</group>
</vector>
================================================
FILE: app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_monochrome" />
</adaptive-icon>
================================================
FILE: app/src/main/AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<application
android:name=".MovieApplication"
android:allowBackup="false"
android:enableOnBackInvokedCallback="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.Moop"
tools:ignore="GoogleAppIndexingWarning"
tools:targetApi="tiramisu">
<profileable
android:shell="true"
tools:targetApi="q" />
<activity
android:name=".ui.main.MainActivity"
android:exported="true"
android:launchMode="singleTask"
android:theme="@style/Theme.Moop.Splash">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
android:exported="false"
tools:node="merge">
<meta-data
android:name="soup.movie.startup.LoggerInitializer"
android:value="androidx.startup" />
</provider>
</application>
</manifest>
================================================
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<Unit> {
override fun create(context: Context) {
if (BuildConfig.DEBUG) {
Logger.plant(DebugTree())
}
}
override fun dependencies(): List<Class<out Initializer<*>>> {
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<NavKey>() }
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<NavKey>(
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<NavKey, NavBarItem>(
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<NavKey, SnapshotStateList<NavKey>> = mapOf(
HomeScreenKey.Home to mutableStateListOf(HomeScreenKey.Home),
HomeScreenKey.Favorite to mutableStateListOf(HomeScreenKey.Favorite),
)
val stacksInUse: List<NavKey>
get() = if (topLevelRoute == startRoute) {
listOf(startRoute)
} else {
listOf(startRoute, topLevelRoute)
}
}
@Composable
fun NavigationState.toEntries(
entryDecorators: List<NavEntryDecorator<NavKey>> =
listOf(
rememberSaveableStateHolderNavEntryDecorator(),
rememberViewModelStoreNavEntryDecorator(),
),
entryProvider: (key: NavKey) -> NavEntry<NavKey>,
): SnapshotStateList<NavEntry<NavKey>> {
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
================================================
<!--
Copyright (C) 2015 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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="48"
android:viewportHeight="48">
<path
android:fillColor="#FFFFFF"
android:pathData="M0,0L48,0L0,48z" />
<path
android:fillColor="#EEEEEE"
android:pathData="M48,48L48,0L0,48z" />
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8">
<path
android:fillAlpha="0.33"
android:fillColor="#FFFFFF"
android:pathData="M58,58L58,39L34.0,14.0L14.0,34.0L39,58z" />
<path
android:fillColor="#64B5F6"
android:pathData="M24.0,24.0c0.0,0.0 0.0,2.2 0.0,5.0s0.0,5.0 0.0,5.0l10.0,-10.0L34.0,14.0L24.0,24.0z" />
<path
android:fillColor="#2196F3"
android:pathData="M24.0,24.0L14.0,14.0l0.0,10.0l10.0,10.0c0.0,0.0 0.0,-2.2 0.0,-5.0S24.0,24.0 24.0,24.0z" />
<path
android:fillColor="#1976D2"
android:pathData="M14.0,34.0l10.0,0.0 -10.0,-10.0z" />
<path
android:fillColor="#1976D2"
android:pathData="M34.0,34.0l0.0,-10.0 -10.0,10.0z" />
<path
android:fillColor="#FFFFFF"
android:pathData="M14,34m -4, 0a 4,4 0 1,0 8,0 a 4,4 0 1,0 -8,0z" />
<path
android:fillColor="#F44336"
android:pathData="M14,34m -3, 0a 3,3 0 1,0 6,0 a 3,3 0 1,0 -6,0z" />
</group>
</vector>
================================================
FILE: app/src/main/res/drawable/ic_launcher_foreground_dark.xml
================================================
<!--
Copyright (C) 2015 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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="48"
android:viewportHeight="48">
<path
android:fillColor="#666666"
android:pathData="M0,0L48,0L0,48z" />
<path
android:fillColor="#444444"
android:pathData="M48,48L48,0L0,48z" />
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8">
<path
android:fillAlpha="0.33"
android:fillColor="#555555"
android:pathData="M58,58L58,39L34.0,14.0L14.0,34.0L39,58z" />
<path
android:fillColor="#90c9f9"
android:pathData="M24.0,24.0c0.0,0.0 0.0,2.2 0.0,5.0s0.0,5.0 0.0,5.0l10.0,-10.0L34.0,14.0L24.0,24.0z" />
<path
android:fillColor="#42a4f5"
android:pathData="M24.0,24.0L14.0,14.0l0.0,10.0l10.0,10.0c0.0,0.0 0.0,-2.2 0.0,-5.0S24.0,24.0 24.0,24.0z" />
<path
android:fillColor="#1e87e5"
android:pathData="M14.0,34.0l10.0,0.0 -10.0,-10.0z" />
<path
android:fillColor="#1e87e5"
android:pathData="M34.0,34.0l0.0,-10.0 -10.0,10.0z" />
<path
android:fillColor="#666666"
android:pathData="M14,34m -4, 0a 4,4 0 1,0 8,0 a 4,4 0 1,0 -8,0z" />
<path
android:fillColor="#ef5250"
android:pathData="M14,34m -3, 0a 3,3 0 1,0 6,0 a 3,3 0 1,0 -6,0z" />
</group>
</vector>
================================================
FILE: app/src/main/res/drawable/ic_launcher_monochrome.xml
================================================
<!--
Copyright (C) 2015 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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="48"
android:viewportHeight="48">
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8">
<path
android:fillColor="#000000"
android:pathData="M24,24L14,14L14,30a 4,4 0 0,1 4,4L34,34L34,14z" />
<path
android:fillColor="#000000"
android:pathData="M14,34m -3, 0a 3,3 0 1,0 6,0 a 3,3 0 1,0 -6,0z" />
</group>
</vector>
================================================
FILE: app/src/main/res/drawable/ic_splash.xml
================================================
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="?android:attr/colorBackground" />
<item
android:drawable="@drawable/ic_splash_launcher"
android:gravity="center" />
</layer-list>
================================================
FILE: app/src/main/res/drawable/icon_v0.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="100dp"
android:height="100dp"
android:viewportHeight="72.0"
android:viewportWidth="72.0">
<path
android:fillColor="#BBDEFB"
android:pathData="M0,0L18,18L36,0V36H0z" />
<path
android:fillColor="#C8E6C9"
android:pathData="M54,18m -10, 0a 10,10 0 1,0 20,0 a 10,10 0 1,0 -20,0z" />
<path
android:fillColor="#F44336"
android:pathData="M9,63m -9, 0a 9,9 0 1,0 18,0 a 9,9 0 1,0 -18,0z" />
<path
android:fillColor="#FFECB3"
android:pathData="M36,36H54V54L72,72H36z" />
</vector>
================================================
FILE: app/src/main/res/drawable/icon_v1.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48.0dp"
android:height="48.0dp"
android:viewportWidth="48.0"
android:viewportHeight="48.0">
<path
android:pathData="M0,0L48,0L0,48z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M48,48L48,0L0,48z"
android:fillColor="#EEEEEE"/>
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8">
<path
android:pathData="M58,58L58,39L34.0,14.0L14.0,34.0L39,58z"
android:fillAlpha="0.33"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M24.0,24.0c0.0,0.0 0.0,2.2 0.0,5.0s0.0,5.0 0.0,5.0l10.0,-10.0L34.0,14.0L24.0,24.0z"
android:fillColor="#64B5F6"/>
<path
android:pathData="M24.0,24.0L14.0,14.0l0.0,10.0l10.0,10.0c0.0,0.0 0.0,-2.2 0.0,-5.0S24.0,24.0 24.0,24.0z"
android:fillColor="#2196F3"/>
<path
android:pathData="M14.0,34.0l10.0,0.0 -10.0,-10.0z"
android:fillColor="#1976D2"/>
<path
android:pathData="M34.0,34.0l0.0,-10.0 -10.0,10.0z"
android:fillColor="#1976D2"/>
<path
android:pathData="M14,34m -4, 0a 4,4 0 1,0 8,0 a 4,4 0 1,0 -8,0z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M14,34m -3, 0a 3,3 0 1,0 6,0 a 3,3 0 1,0 -6,0z"
android:fillColor="#F44336"/>
</group>
</vector>
================================================
FILE: app/src/main/res/drawable/icon_v1_1.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48.0dp"
android:height="48.0dp"
android:viewportWidth="48.0"
android:viewportHeight="48.0">
<path
android:pathData="M0,0L48,0L0,48z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M48,48L48,0L0,48z"
android:fillColor="#EEEEEE"/>
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8">
<path
android:pathData="M58,58L58,39L34.0,14.0L14.0,34.0L39,58z"
android:fillAlpha="0.33"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M24.0,24.0c0.0,0.0 0.0,2.2 0.0,5.0s0.0,5.0 0.0,5.0l10.0,-10.0L34.0,14.0L24.0,24.0z"
android:fillColor="#64B5F6"/>
<path
android:pathData="M24.0,24.0L14.0,14.0l0.0,10.0l10.0,10.0c0.0,0.0 0.0,-2.2 0.0,-5.0S24.0,24.0 24.0,24.0z"
android:fillColor="#2196F3"/>
<path
android:pathData="M14.0,34.0l10.0,0.0 -10.0,-10.0z"
android:fillColor="#1976D2"/>
<path
android:pathData="M34.0,34.0l0.0,-10.0 -10.0,10.0z"
android:fillColor="#1976D2"/>
</group>
</vector>
================================================
FILE: app/src/main/res/drawable/icon_v1_2.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48.0dp"
android:height="48.0dp"
android:viewportWidth="48.0"
android:viewportHeight="48.0">
<path
android:pathData="M0,0L48,0L0,48z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M48,48L48,0L0,48z"
android:fillColor="#EEEEEE"/>
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8">
<path
android:pathData="M58,58L58,44L28.0,14.0L14.0,28.0L44,58z"
android:fillAlpha="0.33"
android:fillColor="#FFFFFF"/>
</group>
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8"
android:rotation="135">
<path
android:pathData="M24,24m -10,0a 10,10 0 0,0 20,0 a 10,10 0 1,0 -20,0z"
android:fillColor="#E57373"/>
<path
android:pathData="M24,24m -10,0a 10,10 0 0,0 20,0z"
android:fillColor="#FFCDD2"/>
<path
android:pathData="M24,24L14,24A 10,-10 0 0,0 24,14z"
android:fillColor="#F44336"/>
<path
android:pathData="M24,24m -9,0a 9,9 0 0,0 18,0 a 9,9 0 1,0 -18,0z"
android:fillColor="#F44336"/>
<path
android:pathData="M24,24m -9,0a 9,9 0 0,0 18,0z"
android:fillColor="#E57373"/>
<path
android:pathData="M24,24L15,24A 9,-9 0 0,0 24,15z"
android:fillColor="#D32F2F"/>
</group>
</vector>
================================================
FILE: app/src/main/res/drawable/icon_v1_3.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48.0dp"
android:height="48.0dp"
android:viewportWidth="48.0"
android:viewportHeight="48.0">
<path
android:pathData="M0,0L48,0L0,48z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M48,48L48,0L0,48z"
android:fillColor="#EEEEEE"/>
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8">
<path
android:pathData="M58,58L58,44L28.0,14.0L14.0,28.0L44,58z"
android:fillAlpha="0.33"
android:fillColor="#FFFFFF"/>
</group>
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8"
android:rotation="135">
<path
android:pathData="M24,24m -10,0a 10,10 0 0,0 20,0 a 10,10 0 1,0 -20,0z"
android:fillColor="#FFD54F"/>
<path
android:pathData="M24,24m -10,0a 10,10 0 0,0 20,0z"
android:fillColor="#FFECB3"/>
<path
android:pathData="M24,24L14,24A 10,-10 0 0,0 24,14z"
android:fillColor="#FFC107"/>
<path
android:pathData="M24,24m -9,0a 9,9 0 0,0 18,0 a 9,9 0 1,0 -18,0z"
android:fillColor="#FFC107"/>
<path
android:pathData="M24,24m -9,0a 9,9 0 0,0 18,0z"
android:fillColor="#FFD54F"/>
<path
android:pathData="M24,24L15,24A 9,-9 0 0,0 24,15z"
android:fillColor="#FFA000"/>
</group>
</vector>
================================================
FILE: app/src/main/res/drawable/icon_v1_4.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 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.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48.0dp"
android:height="48.0dp"
android:viewportWidth="48.0"
android:viewportHeight="48.0">
<path
android:pathData="M0,0L48,0L0,48z"
android:fillColor="#FFFFFF"/>
<path
android:pathData="M48,48L48,0L0,48z"
android:fillColor="#EEEEEE"/>
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.8"
android:scaleY="0.8">
<path
android:pathData="M58,58L58,39L34.0,14.0L14.0,34.0L39,58z"
android:fillAlpha="0.33"
android:fillColor="#FFFFFF"/>
</group>
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.9"
android:scaleY="0.9"
android:translateX="1"
android:translateY="-1">
<path
android:pathData="M14,14L29,14L29,24L24,24z"
android:fillColor="#81C784"/>
<path
android:pathData="M24.0,24.0L14.0,14.0l0.0,10.0l10.0,10.0c0.0,0.0 0.0,-2.2 0.0,-5.0S24.0,24.0 24.0,24.0z"
android:fillColor="#4CAF50"/>
<path
android:pathData="M14.0,34.0l10.0,0.0 -10.0,-10.0z"
android:fillColor="#388E3C"/>
</group>
<group
android:pivotX="24.0"
android:pivotY="24.0"
android:scaleX="0.9"
android:scaleY="0.9"
android:rotation="270"
android:translateX="1"
android:translateY="-1">
<path
android:pathData="M29,29m -5,0a 5,5 0 0,0 10,0z"
android:fillColor="#388E3C"/>
</group>
</vector>
================================================
FILE: app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_monochrome" />
</adaptive-icon>
================================================
FILE: app/src/main/res/mipmap-night-anydpi-v26/ic_launcher.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background_dark"/>
<foreground android:drawable="@drawable/ic_launcher_foreground_dark"/>
</adaptive-icon>
================================================
FILE: app/src/main/res/values/colors.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#FFFFFF</color>
<color name="ic_launcher_background_dark">#000000</color>
</resources>
================================================
FILE: app/src/main/res/values/dimens.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="app_icon_size">48dp</dimen>
</resources>
================================================
FILE: app/src/main/res/values/strings.xml
================================================
<resources>
<string name="app_name">Moop</string>
<string name="shortcut_search_short_label">Theater</string>
<string name="shortcut_search_long_label">Theater</string>
<string name="shortcut_search_disabled">Theater</string>
</resources>
================================================
FILE: app/src/main/res/values/strings_no_translate.xml
================================================
<resources>
<!-- navigation -->
<string name="map_label" translatable="false">TheaterMap</string>
</resources>
================================================
FILE: app/src/main/res/values/sys_ui.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- When in 'light' mode, we use a light scrim and light status bar -->
<color name="status_bar_scrim">@color/transparent</color>
<bool name="use_light_status_bar">true</bool>
<!-- We use a dark scrim for the nav bar, since light nav bar is API 27+ -->
<color name="nav_bar_scrim">@color/system_ui_scrim_dark</color>
<bool name="use_light_nav_bar">false</bool>
<color name="system_ui_scrim_light">#B3FFFFFF</color> <!-- 70% white -->
<color name="system_ui_scrim_dark">#40000000</color> <!-- 25% black -->
<color name="transparent">#00FFFFFF</color>
</resources>
================================================
FILE: app/src/main/res/values/themes.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Platform.V23.Theme.Moop" parent="Theme.AppCompat.DayNight.NoActionBar">
<item name="android:statusBarColor">@color/status_bar_scrim</item>
<item name="android:windowLightStatusBar">@bool/use_light_status_bar</item>
<item name="android:navigationBarColor">@color/nav_bar_scrim</item>
</style>
<style name="Platform.Theme.Moop" parent="Platform.V23.Theme.Moop" />
<style name="Base.Theme.Moop" parent="Platform.Theme.Moop" />
<style name="Theme.Moop" parent="Base.Theme.Moop" />
<style name="Theme.Moop.Splash">
<item name="android:statusBarColor">?android:attr/colorBackground</item>
<item name="android:windowBackground">@drawable/ic_splash</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:windowTranslucentStatus">false</item>
</style>
</resources>
================================================
FILE: app/src/main/res/values-ko/strings.xml
================================================
<resources>
<string name="app_name">뭅</string>
<string name="shortcut_search_short_label">주변극장</string>
<string name="shortcut_search_long_label">주변극장</string>
<string name="shortcut_search_disabled">주변극장</string>
</resources>
================================================
FILE: app/src/main/res/values-night/sys_ui.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- When in 'night' mode, we use a dark scrim and dark status bar -->
<color name="status_bar_scrim">@color/transparent</color>
<bool name="use_light_status_bar">false</bool>
<color name="system_ui_scrim_light">#2EFFFFFF</color> <!-- 18% white -->
<color name="system_ui_scrim_dark">#99000000</color> <!-- 60% black -->
<color name="transparent">#00000000</color>
</resources>
================================================
FILE: app/src/main/res/values-notnight-v27/sys_ui.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- We use a light scrim on API 27+ since we use a light nav bar -->
<color name="nav_bar_scrim">@color/system_ui_scrim_light</color>
<bool name="use_light_nav_bar">true</bool>
</resources>
================================================
FILE: app/src/main/res/values-v27/themes.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Platform.V27.Theme.Moop" parent="Theme.AppCompat.DayNight.NoActionBar">
<item name="android:statusBarColor">@color/status_bar_scrim</item>
<item name="android:windowLightStatusBar">@bool/use_light_status_bar</item>
<item name="android:navigationBarColor">@color/nav_bar_scrim</item>
<item name="android:windowLightNavigationBar">@bool/use_light_nav_bar</item>
</style>
<style name="Platform.Theme.Moop" parent="Platform.V27.Theme.Moop" />
</resources>
================================================
FILE: app/src/main/res/values-v29/themes.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Platform.V29.Theme.Moop" parent="Theme.AppCompat.DayNight.NoActionBar">
<item name="android:statusBarColor">@color/status_bar_scrim</item>
<item name="android:windowLightStatusBar">@bool/use_light_status_bar</item>
<item name="android:navigationBarColor">@color/transparent</item>
<item name="android:windowLightNavigationBar">@bool/use_light_nav_bar</item>
</style>
<style name="Platform.Theme.Moop" parent="Platform.V29.Theme.Moop" />
</resources>
================================================
FILE: app/src/release/generated/baselineProfiles/baseline-prof.txt
================================================
Landroidx/activity/Cancellable;
Landroidx/activity/ComponentActivity;
HSPLandroidx/activity/ComponentActivity;->$r8$lambda$4IRRzyoWeWaykEOcgWGjbNoGAkw(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/ComponentActivity;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
HSPLandroidx/activity/ComponentActivity;->$r8$lambda$KUbBm7ckfqTc9QC-gukC86fguu4(Landroidx/activity/ComponentActivity;Landroid/content/Context;)V
HSPLandroidx/activity/ComponentActivity;->$r8$lambda$cI7dwLT0wnPzJ9a3oRpjgUF1USM(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity;->$r8$lambda$h6vvr6zUWA2U1fE-0KsKpOgpr28(Landroidx/activity/ComponentActivity;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
HSPLandroidx/activity/ComponentActivity;->$r8$lambda$ibk6u1HK7J3AWKL_Wn934v2UVI8(Landroidx/activity/ComponentActivity;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
PLandroidx/activity/ComponentActivity;->$r8$lambda$xTL2e_8-xZHyLBqzsfEVlyFwLP0(Landroidx/activity/ComponentActivity;)Landroid/os/Bundle;
HSPLandroidx/activity/ComponentActivity;-><clinit>()V
HSPLandroidx/activity/ComponentActivity;-><init>()V
HSPLandroidx/activity/ComponentActivity;->_init_$lambda$2(Landroidx/activity/ComponentActivity;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
HSPLandroidx/activity/ComponentActivity;->_init_$lambda$3(Landroidx/activity/ComponentActivity;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
PLandroidx/activity/ComponentActivity;->_init_$lambda$4(Landroidx/activity/ComponentActivity;)Landroid/os/Bundle;
HSPLandroidx/activity/ComponentActivity;->_init_$lambda$5(Landroidx/activity/ComponentActivity;Landroid/content/Context;)V
HSPLandroidx/activity/ComponentActivity;->access$addObserverForBackInvoker(Landroidx/activity/ComponentActivity;Landroidx/activity/OnBackPressedDispatcher;)V
HSPLandroidx/activity/ComponentActivity;->access$ensureViewModelStore(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity;->addMenuProvider(Landroidx/core/view/MenuProvider;)V
HSPLandroidx/activity/ComponentActivity;->addObserverForBackInvoker$lambda$7(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/ComponentActivity;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
HSPLandroidx/activity/ComponentActivity;->addObserverForBackInvoker(Landroidx/activity/OnBackPressedDispatcher;)V
HSPLandroidx/activity/ComponentActivity;->addOnConfigurationChangedListener(Landroidx/core/util/Consumer;)V
HSPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
HSPLandroidx/activity/ComponentActivity;->addOnMultiWindowModeChangedListener(Landroidx/core/util/Consumer;)V
HSPLandroidx/activity/ComponentActivity;->addOnNewIntentListener(Landroidx/core/util/Consumer;)V
HSPLandroidx/activity/ComponentActivity;->addOnPictureInPictureModeChangedListener(Landroidx/core/util/Consumer;)V
HSPLandroidx/activity/ComponentActivity;->addOnTrimMemoryListener(Landroidx/core/util/Consumer;)V
HSPLandroidx/activity/ComponentActivity;->createFullyDrawnExecutor()Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor;
HSPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V
HSPLandroidx/activity/ComponentActivity;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry;
HSPLandroidx/activity/ComponentActivity;->getDefaultViewModelCreationExtras()Landroidx/lifecycle/viewmodel/CreationExtras;
HSPLandroidx/activity/ComponentActivity;->getDefaultViewModelProviderFactory()Landroidx/lifecycle/ViewModelProvider$Factory;
HSPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle;
HSPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
HSPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
HSPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
HSPLandroidx/activity/ComponentActivity;->invalidateMenu()V
HSPLandroidx/activity/ComponentActivity;->menuHostHelper$lambda$0(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V
PLandroidx/activity/ComponentActivity;->onSaveInstanceState(Landroid/os/Bundle;)V
PLandroidx/activity/ComponentActivity;->onTrimMemory(I)V
PLandroidx/activity/ComponentActivity;->onUserLeaveHint()V
PLandroidx/activity/ComponentActivity;->removeMenuProvider(Landroidx/core/view/MenuProvider;)V
PLandroidx/activity/ComponentActivity;->removeOnConfigurationChangedListener(Landroidx/core/util/Consumer;)V
PLandroidx/activity/ComponentActivity;->removeOnMultiWindowModeChangedListener(Landroidx/core/util/Consumer;)V
PLandroidx/activity/ComponentActivity;->removeOnPictureInPictureModeChangedListener(Landroidx/core/util/Consumer;)V
PLandroidx/activity/ComponentActivity;->removeOnTrimMemoryListener(Landroidx/core/util/Consumer;)V
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;->run()V
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;-><init>(Landroidx/activity/ComponentActivity;)V
PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;->saveState()Landroid/os/Bundle;
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda4;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda4;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda4;->onContextAvailable(Landroid/content/Context;)V
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda5;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda5;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/ComponentActivity$4;
HSPLandroidx/activity/ComponentActivity$4;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/ComponentActivity$Api33Impl;
HSPLandroidx/activity/ComponentActivity$Api33Impl;-><clinit>()V
HSPLandroidx/activity/ComponentActivity$Api33Impl;-><init>()V
HSPLandroidx/activity/ComponentActivity$Api33Impl;->getOnBackInvokedDispatcher(Landroid/app/Activity;)Landroid/window/OnBackInvokedDispatcher;
Landroidx/activity/ComponentActivity$Companion;
HSPLandroidx/activity/ComponentActivity$Companion;-><init>()V
HSPLandroidx/activity/ComponentActivity$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
Landroidx/activity/ComponentActivity$NonConfigurationInstances;
Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor;
Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl;
HSPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl;-><init>(Landroidx/activity/ComponentActivity;)V
PLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl;->activityDestroyed()V
Landroidx/activity/ComponentActivity$activityResultRegistry$1;
HSPLandroidx/activity/ComponentActivity$activityResultRegistry$1;-><init>(Landroidx/activity/ComponentActivity;)V
Landroidx/activity/ComponentActivity$defaultViewModelProviderFactory$2;
HSPLandroidx/activity/ComponentActivity$defaultViewModelProviderFactory$2;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$defaultViewModelProviderFactory$2;->invoke()Landroidx/lifecycle/SavedStateViewModelFactory;
HSPLandroidx/activity/ComponentActivity$defaultViewModelProviderFactory$2;->invoke()Ljava/lang/Object;
Landroidx/activity/ComponentActivity$fullyDrawnReporter$2;
HSPLandroidx/activity/ComponentActivity$fullyDrawnReporter$2;-><init>(Landroidx/activity/ComponentActivity;)V
Landroidx/activity/ComponentActivity$onBackPressedDispatcher$2;
HSPLandroidx/activity/ComponentActivity$onBackPressedDispatcher$2;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$onBackPressedDispatcher$2;->invoke()Landroidx/activity/OnBackPressedDispatcher;
HSPLandroidx/activity/ComponentActivity$onBackPressedDispatcher$2;->invoke()Ljava/lang/Object;
Landroidx/activity/ComponentActivity$onBackPressedDispatcher$2$$ExternalSyntheticLambda0;
HSPLandroidx/activity/ComponentActivity$onBackPressedDispatcher$2$$ExternalSyntheticLambda0;-><init>(Landroidx/activity/ComponentActivity;)V
Landroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m$1()Landroid/graphics/BlendMode;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m$1(Landroid/graphics/Insets;)I
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m$1(Landroid/view/autofill/AutofillManager;Landroid/view/autofill/AutofillManager$AutofillCallback;)V
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m$2(Landroid/graphics/Insets;)I
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m$3(Landroid/graphics/Insets;)I
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m$4()Landroid/graphics/BlendMode;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m$7()Landroid/graphics/BlendMode;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m()Ljava/lang/Class;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(I)I
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/app/Activity;)Landroid/window/OnBackInvokedDispatcher;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/content/res/Configuration;)Landroid/os/LocaleList;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/graphics/Insets;)I
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/os/LocaleList;)Ljava/lang/String;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/view/View;I)V
PLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/view/autofill/AutofillManager;Landroid/view/autofill/AutofillManager$AutofillCallback;)V
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Ljava/lang/Object;)Landroid/view/autofill/AutofillManager$AutofillCallback;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Ljava/lang/Object;)Landroid/view/autofill/AutofillManager;
Landroidx/activity/FullyDrawnReporterOwner;
Landroidx/activity/OnBackPressedCallback;
HSPLandroidx/activity/OnBackPressedCallback;-><init>(Z)V
HSPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V
PLandroidx/activity/OnBackPressedCallback;->getEnabledChangedCallback$activity_release()Lkotlin/jvm/functions/Function0;
HSPLandroidx/activity/OnBackPressedCallback;->isEnabled()Z
PLandroidx/activity/OnBackPressedCallback;->remove()V
PLandroidx/activity/OnBackPressedCallback;->removeCancellable(Landroidx/activity/Cancellable;)V
HSPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V
HSPLandroidx/activity/OnBackPressedCallback;->setEnabledChangedCallback$activity_release(Lkotlin/jvm/functions/Function0;)V
Landroidx/activity/OnBackPressedDispatcher;
HSPLandroidx/activity/OnBackPressedDispatcher;-><init>(Ljava/lang/Runnable;)V
HSPLandroidx/activity/OnBackPressedDispatcher;-><init>(Ljava/lang/Runnable;Landroidx/core/util/Consumer;)V
PLandroidx/activity/OnBackPressedDispatcher;->access$getInProgressCallback$p(Landroidx/activity/OnBackPressedDispatcher;)Landroidx/activity/OnBackPressedCallback;
PLandroidx/activity/OnBackPressedDispatcher;->access$getOnBackPressedCallbacks$p(Landroidx/activity/OnBackPressedDispatcher;)Lkotlin/collections/ArrayDeque;
HSPLandroidx/activity/OnBackPressedDispatcher;->access$updateEnabledCallbacks(Landroidx/activity/OnBackPressedDispatcher;)V
HSPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V
HSPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback$activity_release(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable;
HSPLandroidx/activity/OnBackPressedDispatcher;->setOnBackInvokedDispatcher(Landroid/window/OnBackInvokedDispatcher;)V
HSPLandroidx/activity/OnBackPressedDispatcher;->updateBackInvokedCallbackState(Z)V
HSPLandroidx/activity/OnBackPressedDispatcher;->updateEnabledCallbacks()V
Landroidx/activity/OnBackPressedDispatcher$1;
HSPLandroidx/activity/OnBackPressedDispatcher$1;-><init>(Landroidx/activity/OnBackPressedDispatcher;)V
Landroidx/activity/OnBackPressedDispatcher$2;
HSPLandroidx/activity/OnBackPressedDispatcher$2;-><init>(Landroidx/activity/OnBackPressedDispatcher;)V
Landroidx/activity/OnBackPressedDispatcher$3;
HSPLandroidx/activity/OnBackPressedDispatcher$3;-><init>(Landroidx/activity/OnBackPressedDispatcher;)V
Landroidx/activity/OnBackPressedDispatcher$4;
HSPLandroidx/activity/OnBackPressedDispatcher$4;-><init>(Landroidx/activity/OnBackPressedDispatcher;)V
Landroidx/activity/OnBackPressedDispatcher$Api34Impl;
HSPLandroidx/activity/OnBackPressedDispatcher$Api34Impl;-><clinit>()V
HSPLandroidx/activity/OnBackPressedDispatcher$Api34Impl;-><init>()V
HSPLandroidx/activity/OnBackPressedDispatcher$Api34Impl;->createOnBackAnimationCallback(Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)Landroid/window/OnBackInvokedCallback;
Landroidx/activity/OnBackPressedDispatcher$Api34Impl$createOnBackAnimationCallback$1;
HSPLandroidx/activity/OnBackPressedDispatcher$Api34Impl$createOnBackAnimationCallback$1;-><init>(Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)V
Landroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;
HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V
PLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->cancel()V
HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;
HSPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V
PLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->cancel()V
Landroidx/activity/OnBackPressedDispatcher$addCallback$1;
HSPLandroidx/activity/OnBackPressedDispatcher$addCallback$1;-><init>(Ljava/lang/Object;)V
HSPLandroidx/activity/OnBackPressedDispatcher$addCallback$1;->invoke()Ljava/lang/Object;
HSPLandroidx/activity/OnBackPressedDispatcher$addCallback$1;->invoke()V
Landroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;
HSPLandroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;-><init>(Ljava/lang/Object;)V
HSPLandroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;->invoke()Ljava/lang/Object;
HSPLandroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;->invoke()V
Landroidx/activity/OnBackPressedDispatcherOwner;
Landroidx/activity/R$id;
Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner;->get(Landroid/view/View;)Landroidx/activity/OnBackPressedDispatcherOwner;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner;->set(Landroid/view/View;Landroidx/activity/OnBackPressedDispatcherOwner;)V
Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;-><clinit>()V
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;-><init>()V
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->invoke(Landroid/view/View;)Landroid/view/View;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;-><clinit>()V
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;-><init>()V
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->invoke(Landroid/view/View;)Landroidx/activity/OnBackPressedDispatcherOwner;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/activity/compose/BackHandlerKt;
HSPLandroidx/activity/compose/BackHandlerKt;->BackHandler(ZLkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;II)V
Landroidx/activity/compose/BackHandlerKt$BackHandler$1$1;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;-><init>(Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;Z)V
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->invoke()Ljava/lang/Object;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->invoke()V
Landroidx/activity/compose/BackHandlerKt$BackHandler$2$1;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2$1;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;)V
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2$1;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/activity/compose/BackHandlerKt$BackHandler$2$1$invoke$$inlined$onDispose$1;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2$1$invoke$$inlined$onDispose$1;-><init>(Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;)V
PLandroidx/activity/compose/BackHandlerKt$BackHandler$2$1$invoke$$inlined$onDispose$1;->dispose()V
Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;-><init>(ZLandroidx/compose/runtime/State;)V
Landroidx/activity/compose/ComponentActivityKt;
HSPLandroidx/activity/compose/ComponentActivityKt;-><clinit>()V
HSPLandroidx/activity/compose/ComponentActivityKt;->setContent$default(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/CompositionContext;Lkotlin/jvm/functions/Function2;ILjava/lang/Object;)V
HSPLandroidx/activity/compose/ComponentActivityKt;->setContent(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/CompositionContext;Lkotlin/jvm/functions/Function2;)V
HSPLandroidx/activity/compose/ComponentActivityKt;->setOwners(Landroidx/activity/ComponentActivity;)V
Landroidx/activity/compose/LocalOnBackPressedDispatcherOwner;
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;-><clinit>()V
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;-><init>()V
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;->getCurrent(Landroidx/compose/runtime/Composer;I)Landroidx/activity/OnBackPressedDispatcherOwner;
Landroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;-><clinit>()V
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;-><init>()V
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->invoke()Landroidx/activity/OnBackPressedDispatcherOwner;
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->invoke()Ljava/lang/Object;
Landroidx/activity/contextaware/ContextAware;
Landroidx/activity/contextaware/ContextAwareHelper;
HSPLandroidx/activity/contextaware/ContextAwareHelper;-><init>()V
HSPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
PLandroidx/activity/contextaware/ContextAwareHelper;->clearAvailableContext()V
HSPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V
Landroidx/activity/contextaware/OnContextAvailableListener;
Landroidx/activity/result/ActivityResult;
Landroidx/activity/result/ActivityResultCallback;
Landroidx/activity/result/ActivityResultCaller;
Landroidx/activity/result/ActivityResultLauncher;
HSPLandroidx/activity/result/ActivityResultLauncher;-><init>()V
Landroidx/activity/result/ActivityResultRegistry;
HSPLandroidx/activity/result/ActivityResultRegistry;-><clinit>()V
HSPLandroidx/activity/result/ActivityResultRegistry;-><init>()V
HSPLandroidx/activity/result/ActivityResultRegistry;->bindRcKey(ILjava/lang/String;)V
HSPLandroidx/activity/result/ActivityResultRegistry;->generateRandomNumber()I
PLandroidx/activity/result/ActivityResultRegistry;->onSaveInstanceState(Landroid/os/Bundle;)V
HSPLandroidx/activity/result/ActivityResultRegistry;->register(Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)Landroidx/activity/result/ActivityResultLauncher;
HSPLandroidx/activity/result/ActivityResultRegistry;->registerKey(Ljava/lang/String;)V
PLandroidx/activity/result/ActivityResultRegistry;->unregister$activity_release(Ljava/lang/String;)V
Landroidx/activity/result/ActivityResultRegistry$CallbackAndContract;
HSPLandroidx/activity/result/ActivityResultRegistry$CallbackAndContract;-><init>(Landroidx/activity/result/ActivityResultCallback;Landroidx/activity/result/contract/ActivityResultContract;)V
Landroidx/activity/result/ActivityResultRegistry$Companion;
HSPLandroidx/activity/result/ActivityResultRegistry$Companion;-><init>()V
HSPLandroidx/activity/result/ActivityResultRegistry$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
Landroidx/activity/result/ActivityResultRegistry$generateRandomNumber$1;
HSPLandroidx/activity/result/ActivityResultRegistry$generateRandomNumber$1;-><clinit>()V
HSPLandroidx/activity/result/ActivityResultRegistry$generateRandomNumber$1;-><init>()V
HSPLandroidx/activity/result/ActivityResultRegistry$generateRandomNumber$1;->invoke()Ljava/lang/Integer;
HSPLandroidx/activity/result/ActivityResultRegistry$generateRandomNumber$1;->invoke()Ljava/lang/Object;
Landroidx/activity/result/ActivityResultRegistry$register$3;
HSPLandroidx/activity/result/ActivityResultRegistry$register$3;-><init>(Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;)V
PLandroidx/activity/result/ActivityResultRegistry$register$3;->unregister()V
Landroidx/activity/result/ActivityResultRegistryOwner;
Landroidx/activity/result/contract/ActivityResultContract;
HSPLandroidx/activity/result/contract/ActivityResultContract;-><init>()V
Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;
HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;-><clinit>()V
HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;-><init>()V
Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion;
HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion;-><init>()V
HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;
HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;-><clinit>()V
HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;-><init>()V
Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion;
HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion;-><init>()V
HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
Landroidx/appcompat/R$drawable;
Landroidx/appcompat/R$id;
Landroidx/appcompat/R$layout;
Landroidx/appcompat/R$style;
Landroidx/appcompat/R$styleable;
HSPLandroidx/appcompat/R$styleable;-><clinit>()V
Landroidx/appcompat/app/ActionBarDrawerToggle$DelegateProvider;
Landroidx/appcompat/app/AppCompatActivity;
HSPLandroidx/appcompat/app/AppCompatActivity;-><init>()V
HSPLandroidx/appcompat/app/AppCompatActivity;->attachBaseContext(Landroid/content/Context;)V
HSPLandroidx/appcompat/app/AppCompatActivity;->getDelegate()Landroidx/appcompat/app/AppCompatDelegate;
HSPLandroidx/appcompat/app/AppCompatActivity;->getResources()Landroid/content/res/Resources;
HSPLandroidx/appcompat/app/AppCompatActivity;->initDelegate()V
HSPLandroidx/appcompat/app/AppCompatActivity;->initViewTreeOwners()V
HSPLandroidx/appcompat/app/AppCompatActivity;->invalidateOptionsMenu()V
HSPLandroidx/appcompat/app/AppCompatActivity;->onContentChanged()V
PLandroidx/appcompat/app/AppCompatActivity;->onDestroy()V
HSPLandroidx/appcompat/app/AppCompatActivity;->onPostCreate(Landroid/os/Bundle;)V
HSPLandroidx/appcompat/app/AppCompatActivity;->onPostResume()V
HSPLandroidx/appcompat/app/AppCompatActivity;->onStart()V
PLandroidx/appcompat/app/AppCompatActivity;->onStop()V
HSPLandroidx/appcompat/app/AppCompatActivity;->onSupportContentChanged()V
HSPLandroidx/appcompat/app/AppCompatActivity;->onTitleChanged(Ljava/lang/CharSequence;I)V
HSPLandroidx/appcompat/app/AppCompatActivity;->setContentView(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V
HSPLandroidx/appcompat/app/AppCompatActivity;->setTheme(I)V
Landroidx/appcompat/app/AppCompatActivity$1;
HSPLandroidx/appcompat/app/AppCompatActivity$1;-><init>(Landroidx/appcompat/app/AppCompatActivity;)V
PLandroidx/appcompat/app/AppCompatActivity$1;->saveState()Landroid/os/Bundle;
Landroidx/appcompat/app/AppCompatActivity$2;
HSPLandroidx/appcompat/app/AppCompatActivity$2;-><init>(Landroidx/appcompat/app/AppCompatActivity;)V
HSPLandroidx/appcompat/app/AppCompatActivity$2;->onContextAvailable(Landroid/content/Context;)V
Landroidx/appcompat/app/AppCompatCallback;
Landroidx/appcompat/app/AppCompatDelegate;
HSPLandroidx/appcompat/app/AppCompatDelegate;-><clinit>()V
HSPLandroidx/appcompat/app/AppCompatDelegate;-><init>()V
HSPLandroidx/appcompat/app/AppCompatDelegate;->addActiveDelegate(Landroidx/appcompat/app/AppCompatDelegate;)V
HSPLandroidx/appcompat/app/AppCompatDelegate;->applyDayNightToActiveDelegates()V
HSPLandroidx/appcompat/app/AppCompatDelegate;->attachBaseContext(Landroid/content/Context;)V
HSPLandroidx/appcompat/app/AppCompatDelegate;->attachBaseContext2(Landroid/content/Context;)Landroid/content/Context;
HSPLandroidx/appcompat/app/AppCompatDelegate;->create(Landroid/app/Activity;Landroidx/appcompat/app/AppCompatCallback;)Landroidx/appcompat/app/AppCompatDelegate;
HSPLandroidx/appcompat/app/AppCompatDelegate;->getDefaultNightMode()I
HSPLandroidx/appcompat/app/AppCompatDelegate;->isAutoStorageOptedIn(Landroid/content/Context;)Z
PLandroidx/appcompat/app/AppCompatDelegate;->removeActivityDelegate(Landroidx/appcompat/app/AppCompatDelegate;)V
HSPLandroidx/appcompat/app/AppCompatDelegate;->removeDelegateFromActives(Landroidx/appcompat/app/AppCompatDelegate;)V
HSPLandroidx/appcompat/app/AppCompatDelegate;->setDefaultNightMode(I)V
HSPLandroidx/appcompat/app/AppCompatDelegate;->setOnBackInvokedDispatcher(Landroid/window/OnBackInvokedDispatcher;)V
Landroidx/appcompat/app/AppCompatDelegateImpl;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><clinit>()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><init>(Landroid/app/Activity;Landroidx/appcompat/app/AppCompatCallback;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><init>(Landroid/content/Context;Landroid/view/Window;Landroidx/appcompat/app/AppCompatCallback;Ljava/lang/Object;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyApplicationSpecificConfig(Z)Z
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyApplicationSpecificConfig(ZZ)Z
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyFixedSizeWindow()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->attachBaseContext2(Landroid/content/Context;)Landroid/content/Context;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->attachToWindow(Landroid/view/Window;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->calculateApplicationLocales(Landroid/content/Context;)Landroidx/core/os/LocaleListCompat;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->calculateNightMode()I
PLandroidx/appcompat/app/AppCompatDelegateImpl;->cleanupAutoManagers()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createOverrideAppConfiguration(Landroid/content/Context;ILandroidx/core/os/LocaleListCompat;Landroid/content/res/Configuration;Z)Landroid/content/res/Configuration;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createSubDecor()Landroid/view/ViewGroup;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
PLandroidx/appcompat/app/AppCompatDelegateImpl;->dismissPopups()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->doInvalidatePanelMenu(I)V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->endOnGoingFadeAnimation()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureSubDecor()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureWindow()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getActivityHandlesConfigChangesFlags(Landroid/content/Context;)I
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getConfigurationLocales(Landroid/content/res/Configuration;)Landroidx/core/os/LocaleListCompat;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getPanelState(IZ)Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getSupportActionBar()Landroidx/appcompat/app/ActionBar;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getTitle()Ljava/lang/CharSequence;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->initWindowDecorActionBar()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->installViewFactory()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->invalidateOptionsMenu()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->invalidatePanelMenu(I)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->mapNightMode(Landroid/content/Context;I)I
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreate(Landroid/os/Bundle;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onDestroy()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostCreate(Landroid/os/Bundle;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostResume()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onSaveInstanceState(Landroid/os/Bundle;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onStart()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onStop()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onSubDecorInstalled(Landroid/view/ViewGroup;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->peekSupportActionBar()Landroidx/appcompat/app/ActionBar;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->requestWindowFeature(I)Z
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->sanitizeWindowFeatureId(I)I
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setContentView(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setOnBackInvokedDispatcher(Landroid/window/OnBackInvokedDispatcher;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setTheme(I)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setTitle(Ljava/lang/CharSequence;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->shouldRegisterBackInvokedCallback()Z
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->throwFeatureRequestIfSubDecorInstalled()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->updateAppConfiguration(ILandroidx/core/os/LocaleListCompat;Z)Z
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->updateBackInvokedCallbackState()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->updateStatusGuard(Landroidx/core/view/WindowInsetsCompat;Landroid/graphics/Rect;)I
Landroidx/appcompat/app/AppCompatDelegateImpl$2;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$2;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$2;->run()V
Landroidx/appcompat/app/AppCompatDelegateImpl$3;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$3;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$3;->onApplyWindowInsets(Landroid/view/View;Landroidx/core/view/WindowInsetsCompat;)Landroidx/core/view/WindowInsetsCompat;
Landroidx/appcompat/app/AppCompatDelegateImpl$5;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$5;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$5;->onAttachedFromWindow()V
PLandroidx/appcompat/app/AppCompatDelegateImpl$5;->onDetachedFromWindow()V
Landroidx/appcompat/app/AppCompatDelegateImpl$Api17Impl;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$Api17Impl;->createConfigurationContext(Landroid/content/Context;Landroid/content/res/Configuration;)Landroid/content/Context;
Landroidx/appcompat/app/AppCompatDelegateImpl$Api24Impl;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$Api24Impl;->getLocales(Landroid/content/res/Configuration;)Landroidx/core/os/LocaleListCompat;
Landroidx/appcompat/app/AppCompatDelegateImpl$Api33Impl;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$Api33Impl;->getOnBackInvokedDispatcher(Landroid/app/Activity;)Landroid/window/OnBackInvokedDispatcher;
Landroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;Landroid/view/Window$Callback;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->bypassOnContentChanged(Landroid/view/Window$Callback;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onContentChanged()V
Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;-><init>(I)V
Landroidx/appcompat/app/AppCompatViewInflater;
HSPLandroidx/appcompat/app/AppCompatViewInflater;-><clinit>()V
HSPLandroidx/appcompat/app/AppCompatViewInflater;-><init>()V
HSPLandroidx/appcompat/app/AppCompatViewInflater;->createView(Landroid/content/Context;Ljava/lang/String;Landroid/util/AttributeSet;)Landroid/view/View;
HSPLandroidx/appcompat/app/AppCompatViewInflater;->createView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;ZZZZ)Landroid/view/View;
HSPLandroidx/appcompat/app/AppCompatViewInflater;->themifyContext(Landroid/content/Context;Landroid/util/AttributeSet;ZZ)Landroid/content/Context;
Landroidx/appcompat/app/AppLocalesMetadataHolderService;
HSPLandroidx/appcompat/app/AppLocalesMetadataHolderService;->getServiceInfo(Landroid/content/Context;)Landroid/content/pm/ServiceInfo;
Landroidx/appcompat/app/AppLocalesMetadataHolderService$Api24Impl;
HSPLandroidx/appcompat/app/AppLocalesMetadataHolderService$Api24Impl;->getDisabledComponentFlag()I
Landroidx/appcompat/app/AppLocalesStorageHelper$SerialExecutor;
HSPLandroidx/appcompat/app/AppLocalesStorageHelper$SerialExecutor;-><init>(Ljava/util/concurrent/Executor;)V
Landroidx/appcompat/app/AppLocalesStorageHelper$ThreadPerTaskExecutor;
HSPLandroidx/appcompat/app/AppLocalesStorageHelper$ThreadPerTaskExecutor;-><init>()V
Landroidx/appcompat/resources/R$drawable;
Landroidx/appcompat/view/ContextThemeWrapper;
HSPLandroidx/appcompat/view/ContextThemeWrapper;-><init>(Landroid/content/Context;I)V
HSPLandroidx/appcompat/view/ContextThemeWrapper;->applyOverrideConfiguration(Landroid/content/res/Configuration;)V
HSPLandroidx/appcompat/view/ContextThemeWrapper;->getResources()Landroid/content/res/Resources;
HSPLandroidx/appcompat/view/ContextThemeWrapper;->getResourcesInternal()Landroid/content/res/Resources;
HSPLandroidx/appcompat/view/ContextThemeWrapper;->getSystemService(Ljava/lang/String;)Ljava/lang/Object;
HSPLandroidx/appcompat/view/ContextThemeWrapper;->getTheme()Landroid/content/res/Resources$Theme;
HSPLandroidx/appcompat/view/ContextThemeWrapper;->initializeTheme()V
HSPLandroidx/appcompat/view/ContextThemeWrapper;->isEmptyConfiguration(Landroid/content/res/Configuration;)Z
HSPLandroidx/appcompat/view/ContextThemeWrapper;->onApplyThemeResource(Landroid/content/res/Resources$Theme;IZ)V
Landroidx/appcompat/view/WindowCallbackWrapper;
HSPLandroidx/appcompat/view/WindowCallbackWrapper;-><init>(Landroid/view/Window$Callback;)V
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchPopulateAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)Z
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->getWrapped()Landroid/view/Window$Callback;
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onAttachedToWindow()V
PLandroidx/appcompat/view/WindowCallbackWrapper;->onDetachedFromWindow()V
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowAttributesChanged(Landroid/view/WindowManager$LayoutParams;)V
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowFocusChanged(Z)V
Landroidx/appcompat/view/menu/MenuBuilder$Callback;
Landroidx/appcompat/widget/AppCompatDrawableManager;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;-><clinit>()V
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;-><init>()V
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->access$000()Landroid/graphics/PorterDuff$Mode;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->get()Landroidx/appcompat/widget/AppCompatDrawableManager;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->getDrawable(Landroid/content/Context;IZ)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->preload()V
Landroidx/appcompat/widget/AppCompatDrawableManager$1;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;-><init>()V
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->arrayContains([II)Z
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->createDrawableFor(Landroidx/appcompat/widget/ResourceManagerInternal;Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->getTintListForDrawableRes(Landroid/content/Context;I)Landroid/content/res/ColorStateList;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->tintDrawable(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->tintDrawableUsingColorFilter(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z
Landroidx/appcompat/widget/ContentFrameLayout;
HSPLandroidx/appcompat/widget/ContentFrameLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
HSPLandroidx/appcompat/widget/ContentFrameLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
HSPLandroidx/appcompat/widget/ContentFrameLayout;->getMinWidthMajor()Landroid/util/TypedValue;
HSPLandroidx/appcompat/widget/ContentFrameLayout;->getMinWidthMinor()Landroid/util/TypedValue;
HSPLandroidx/appcompat/widget/ContentFrameLayout;->onAttachedToWindow()V
PLandroidx/appcompat/widget/ContentFrameLayout;->onDetachedFromWindow()V
HSPLandroidx/appcompat/widget/ContentFrameLayout;->onMeasure(II)V
HSPLandroidx/appcompat/widget/ContentFrameLayout;->setAttachListener(Landroidx/appcompat/widget/ContentFrameLayout$OnAttachListener;)V
HSPLandroidx/appcompat/widget/ContentFrameLayout;->setDecorPadding(IIII)V
Landroidx/appcompat/widget/ContentFrameLayout$OnAttachListener;
Landroidx/appcompat/widget/DrawableUtils;
HSPLandroidx/appcompat/widget/DrawableUtils;-><clinit>()V
HSPLandroidx/appcompat/widget/DrawableUtils;->fixDrawable(Landroid/graphics/drawable/Drawable;)V
Landroidx/appcompat/widget/FitWindowsLinearLayout;
HSPLandroidx/appcompat/widget/FitWindowsLinearLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
HSPLandroidx/appcompat/widget/FitWindowsLinearLayout;->fitSystemWindows(Landroid/graphics/Rect;)Z
Landroidx/appcompat/widget/FitWindowsViewGroup;
Landroidx/appcompat/widget/ResourceManagerInternal;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;-><clinit>()V
HSPLandroidx/appcompat/widget/ResourceManagerInternal;-><init>()V
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->checkVectorDrawableSetup(Landroid/content/Context;)V
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->createCacheKey(Landroid/util/TypedValue;)J
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->createDrawableIfNeeded(Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->get()Landroidx/appcompat/widget/ResourceManagerInternal;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->getCachedDrawable(Landroid/content/Context;J)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->getDrawable(Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->getDrawable(Landroid/content/Context;IZ)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->getTintList(Landroid/content/Context;I)Landroid/content/res/ColorStateList;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->getTintListFromCache(Landroid/content/Context;I)Landroid/content/res/ColorStateList;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->installDefaultInflateDelegates(Landroidx/appcompat/widget/ResourceManagerInternal;)V
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->isVectorDrawable(Landroid/graphics/drawable/Drawable;)Z
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->loadDrawableFromDelegates(Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->setHooks(Landroidx/appcompat/widget/ResourceManagerInternal$ResourceManagerHooks;)V
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->tintDrawable(Landroid/content/Context;IZLandroid/graphics/drawable/Drawable;)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->tintDrawableUsingColorFilter(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z
Landroidx/appcompat/widget/ResourceManagerInternal$ColorFilterLruCache;
HSPLandroidx/appcompat/widget/ResourceManagerInternal$ColorFilterLruCache;-><init>(I)V
Landroidx/appcompat/widget/ResourceManagerInternal$ResourceManagerHooks;
Landroidx/appcompat/widget/ResourcesWrapper;
Landroidx/appcompat/widget/TintTypedArray;
HSPLandroidx/appcompat/widget/TintTypedArray;-><init>(Landroid/content/Context;Landroid/content/res/TypedArray;)V
HSPLandroidx/appcompat/widget/TintTypedArray;->getDrawableIfKnown(I)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;Landroid/util/AttributeSet;[I)Landroidx/appcompat/widget/TintTypedArray;
HSPLandroidx/appcompat/widget/TintTypedArray;->recycle()V
Landroidx/appcompat/widget/VectorEnabledTintResources;
HSPLandroidx/appcompat/widget/VectorEnabledTintResources;-><clinit>()V
HSPLandroidx/appcompat/widget/VectorEnabledTintResources;->isCompatVectorFromResourcesEnabled()Z
HSPLandroidx/appcompat/widget/VectorEnabledTintResources;->shouldBeUsed()Z
Landroidx/appcompat/widget/ViewStubCompat;
HSPLandroidx/appcompat/widget/ViewStubCompat;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
HSPLandroidx/appcompat/widget/ViewStubCompat;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
HSPLandroidx/appcompat/widget/ViewStubCompat;->setVisibility(I)V
Landroidx/appcompat/widget/ViewUtils;
HSPLandroidx/appcompat/widget/ViewUtils;-><clinit>()V
HSPLandroidx/appcompat/widget/ViewUtils;->makeOptionalFitsSystemWindows(Landroid/view/View;)V
Landroidx/arch/core/executor/ArchTaskExecutor;
HSPLandroidx/arch/core/executor/ArchTaskExecutor;-><clinit>()V
HSPLandroidx/arch/core/executor/ArchTaskExecutor;-><init>()V
HSPLandroidx/arch/core/executor/ArchTaskExecutor;->executeOnDiskIO(Ljava/lang/Runnable;)V
HSPLandroidx/arch/core/executor/ArchTaskExecutor;->getIOThreadExecutor()Ljava/util/concurrent/Executor;
HSPLandroidx/arch/core/executor/ArchTaskExecutor;->getInstance()Landroidx/arch/core/executor/ArchTaskExecutor;
HSPLandroidx/arch/core/executor/ArchTaskExecutor;->isMainThread()Z
HSPLandroidx/arch/core/executor/ArchTaskExecutor;->lambda$static$1(Ljava/lang/Runnable;)V
HSPLandroidx/arch/core/executor/ArchTaskExecutor;->postToMainThread(Ljava/lang/Runnable;)V
Landroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda0;
HSPLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda0;-><init>()V
Landroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;
HSPLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;-><init>()V
HSPLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;->execute(Ljava/lang/Runnable;)V
Landroidx/arch/core/executor/DefaultTaskExecutor;
HSPLandroidx/arch/core/executor/DefaultTaskExecutor;-><init>()V
HSPLandroidx/arch/core/executor/DefaultTaskExecutor;->createAsync(Landroid/os/Looper;)Landroid/os/Handler;
HSPLandroidx/arch/core/executor/DefaultTaskExecutor;->executeOnDiskIO(Ljava/lang/Runnable;)V
HSPLandroidx/arch/core/executor/DefaultTaskExecutor;->isMainThread()Z
HSPLandroidx/arch/core/executor/DefaultTaskExecutor;->postToMainThread(Ljava/lang/Runnable;)V
Landroidx/arch/core/executor/DefaultTaskExecutor$1;
HSPLandroidx/arch/core/executor/DefaultTaskExecutor$1;-><init>(Landroidx/arch/core/executor/DefaultTaskExecutor;)V
HSPLandroidx/arch/core/executor/DefaultTaskExecutor$1;->newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;
Landroidx/arch/core/executor/DefaultTaskExecutor$Api28Impl;
HSPLandroidx/arch/core/executor/DefaultTaskExecutor$Api28Impl;->createAsync(Landroid/os/Looper;)Landroid/os/Handler;
Landroidx/arch/core/executor/TaskExecutor;
HSPLandroidx/arch/core/executor/TaskExecutor;-><init>()V
Landroidx/arch/core/internal/FastSafeIterableMap;
HSPLandroidx/arch/core/internal/FastSafeIterableMap;-><init>()V
HSPLandroidx/arch/core/internal/FastSafeIterableMap;->ceil(Ljava/lang/Object;)Ljava/util/Map$Entry;
HSPLandroidx/arch/core/internal/FastSafeIterableMap;->contains(Ljava/lang/Object;)Z
HSPLandroidx/arch/core/internal/FastSafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
HSPLandroidx/arch/core/internal/FastSafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/arch/core/internal/FastSafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/arch/core/internal/SafeIterableMap;
HSPLandroidx/arch/core/internal/SafeIterableMap;-><init>()V
PLandroidx/arch/core/internal/SafeIterableMap;->descendingIterator()Ljava/util/Iterator;
HSPLandroidx/arch/core/internal/SafeIterableMap;->eldest()Ljava/util/Map$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap;->iterator()Ljava/util/Iterator;
HSPLandroidx/arch/core/internal/SafeIterableMap;->iteratorWithAdditions()Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
HSPLandroidx/arch/core/internal/SafeIterableMap;->newest()Ljava/util/Map$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/arch/core/internal/SafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/arch/core/internal/SafeIterableMap;->size()I
Landroidx/arch/core/internal/SafeIterableMap$AscendingIterator;
HSPLandroidx/arch/core/internal/SafeIterableMap$AscendingIterator;-><init>(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
HSPLandroidx/arch/core/internal/SafeIterableMap$AscendingIterator;->forward(Landroidx/arch/core/internal/SafeIterableMap$Entry;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
PLandroidx/arch/core/internal/SafeIterableMap$DescendingIterator;-><init>(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
PLandroidx/arch/core/internal/SafeIterableMap$DescendingIterator;->backward(Landroidx/arch/core/internal/SafeIterableMap$Entry;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
PLandroidx/arch/core/internal/SafeIterableMap$DescendingIterator;->forward(Landroidx/arch/core/internal/SafeIterableMap$Entry;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
Landroidx/arch/core/internal/SafeIterableMap$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap$Entry;-><init>(Ljava/lang/Object;Ljava/lang/Object;)V
HSPLandroidx/arch/core/internal/SafeIterableMap$Entry;->getKey()Ljava/lang/Object;
HSPLandroidx/arch/core/internal/SafeIterableMap$Entry;->getValue()Ljava/lang/Object;
Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;-><init>(Landroidx/arch/core/internal/SafeIterableMap;)V
HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->hasNext()Z
HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/lang/Object;
HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/util/Map$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->supportRemove(Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
Landroidx/arch/core/internal/SafeIterableMap$ListIterator;
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;-><init>(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->hasNext()Z
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->next()Ljava/lang/Object;
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->next()Ljava/util/Map$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->nextNode()Landroidx/arch/core/internal/SafeIterableMap$Entry;
PLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->supportRemove(Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
Landroidx/arch/core/internal/SafeIterableMap$SupportRemove;
HSPLandroidx/arch/core/internal/SafeIterableMap$SupportRemove;-><init>()V
Landroidx/arch/core/util/Function;
Landroidx/collection/ArrayMap;
HSPLandroidx/collection/ArrayMap;-><init>()V
HSPLandroidx/collection/ArrayMap;-><init>(I)V
HSPLandroidx/collection/ArrayMap;->containsKey(Ljava/lang/Object;)Z
HSPLandroidx/collection/ArrayMap;->get(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/ArrayMap;->keySet()Ljava/util/Set;
HSPLandroidx/collection/ArrayMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
PLandroidx/collection/ArrayMap;->values()Ljava/util/Collection;
Landroidx/collection/ArrayMap$KeyIterator;
HSPLandroidx/collection/ArrayMap$KeyIterator;-><init>(Landroidx/collection/ArrayMap;)V
Landroidx/collection/ArrayMap$KeySet;
HSPLandroidx/collection/ArrayMap$KeySet;-><init>(Landroidx/collection/ArrayMap;)V
HSPLandroidx/collection/ArrayMap$KeySet;->iterator()Ljava/util/Iterator;
PLandroidx/collection/ArrayMap$ValueCollection;-><init>(Landroidx/collection/ArrayMap;)V
PLandroidx/collection/ArrayMap$ValueCollection;->toArray()[Ljava/lang/Object;
Landroidx/collection/ArraySet;
HSPLandroidx/collection/ArraySet;-><init>()V
HSPLandroidx/collection/ArraySet;-><init>(I)V
HSPLandroidx/collection/ArraySet;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/ArraySet;->add(Ljava/lang/Object;)Z
HSPLandroidx/collection/ArraySet;->addAll(Ljava/util/Collection;)Z
HSPLandroidx/collection/ArraySet;->clear()V
HSPLandroidx/collection/ArraySet;->ensureCapacity(I)V
HSPLandroidx/collection/ArraySet;->getArray$collection()[Ljava/lang/Object;
HSPLandroidx/collection/ArraySet;->getHashes$collection()[I
HSPLandroidx/collection/ArraySet;->getSize()I
HSPLandroidx/collection/ArraySet;->get_size$collection()I
HSPLandroidx/collection/ArraySet;->iterator()Ljava/util/Iterator;
PLandroidx/collection/ArraySet;->removeAt(I)Ljava/lang/Object;
HSPLandroidx/collection/ArraySet;->setArray$collection([Ljava/lang/Object;)V
HSPLandroidx/collection/ArraySet;->setHashes$collection([I)V
HSPLandroidx/collection/ArraySet;->set_size$collection(I)V
HSPLandroidx/collection/ArraySet;->size()I
HSPLandroidx/collection/ArraySet;->toArray()[Ljava/lang/Object;
PLandroidx/collection/ArraySet;->valueAt(I)Ljava/lang/Object;
Landroidx/collection/ArraySet$ElementIterator;
HSPLandroidx/collection/ArraySet$ElementIterator;-><init>(Landroidx/collection/ArraySet;)V
PLandroidx/collection/ArraySet$ElementIterator;->elementAt(I)Ljava/lang/Object;
PLandroidx/collection/ArraySet$ElementIterator;->removeAt(I)V
Landroidx/collection/ArraySetKt;
HSPLandroidx/collection/ArraySetKt;->allocArrays(Landroidx/collection/ArraySet;I)V
HSPLandroidx/collection/ArraySetKt;->indexOf(Landroidx/collection/ArraySet;Ljava/lang/Object;I)I
Landroidx/collection/IndexBasedArrayIterator;
HSPLandroidx/collection/IndexBasedArrayIterator;-><init>(I)V
HSPLandroidx/collection/IndexBasedArrayIterator;->hasNext()Z
PLandroidx/collection/IndexBasedArrayIterator;->next()Ljava/lang/Object;
PLandroidx/collection/IndexBasedArrayIterator;->remove()V
Landroidx/collection/IntIntMap;
HSPLandroidx/collection/IntIntMap;-><init>()V
HSPLandroidx/collection/IntIntMap;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/IntIntMap;->contains(I)Z
HSPLandroidx/collection/IntIntMap;->findKeyIndex(I)I
HSPLandroidx/collection/IntIntMap;->getCapacity()I
Landroidx/collection/IntObjectMap;
HSPLandroidx/collection/IntObjectMap;-><init>()V
HSPLandroidx/collection/IntObjectMap;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/IntObjectMap;->getCapacity()I
Landroidx/collection/IntObjectMapKt;
HSPLandroidx/collection/IntObjectMapKt;-><clinit>()V
HSPLandroidx/collection/IntObjectMapKt;->mutableIntObjectMapOf()Landroidx/collection/MutableIntObjectMap;
Landroidx/collection/IntSet;
HSPLandroidx/collection/IntSet;-><init>()V
HSPLandroidx/collection/IntSet;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/IntSet;->getCapacity()I
Landroidx/collection/IntSetKt;
HSPLandroidx/collection/IntSetKt;-><clinit>()V
HPLandroidx/collection/IntSetKt;->getEmptyIntArray()[I
Landroidx/collection/LongSparseArray;
HSPLandroidx/collection/LongSparseArray;-><init>(I)V
HSPLandroidx/collection/LongSparseArray;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
Landroidx/collection/LruCache;
HSPLandroidx/collection/LruCache;-><init>(I)V
HSPLandroidx/collection/LruCache;->create(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/LruCache;->get(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/LruCache;->maxSize()I
HSPLandroidx/collection/LruCache;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/LruCache;->safeSizeOf(Ljava/lang/Object;Ljava/lang/Object;)I
HSPLandroidx/collection/LruCache;->trimToSize(I)V
Landroidx/collection/MutableIntIntMap;
HSPLandroidx/collection/MutableIntIntMap;-><init>(I)V
HSPLandroidx/collection/MutableIntIntMap;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/MutableIntIntMap;->findFirstAvailableSlot(I)I
HSPLandroidx/collection/MutableIntIntMap;->findInsertIndex(I)I
HSPLandroidx/collection/MutableIntIntMap;->initializeGrowth()V
HSPLandroidx/collection/MutableIntIntMap;->initializeMetadata(I)V
HSPLandroidx/collection/MutableIntIntMap;->initializeStorage(I)V
HSPLandroidx/collection/MutableIntIntMap;->set(II)V
Landroidx/collection/MutableIntObjectMap;
HSPLandroidx/collection/MutableIntObjectMap;-><init>(I)V
HSPLandroidx/collection/MutableIntObjectMap;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/MutableIntObjectMap;->findAbsoluteInsertIndex(I)I
HSPLandroidx/collection/MutableIntObjectMap;->findFirstAvailableSlot(I)I
HSPLandroidx/collection/MutableIntObjectMap;->initializeGrowth()V
HSPLandroidx/collection/MutableIntObjectMap;->initializeMetadata(I)V
HSPLandroidx/collection/MutableIntObjectMap;->initializeStorage(I)V
HSPLandroidx/collection/MutableIntObjectMap;->set(ILjava/lang/Object;)V
Landroidx/collection/MutableIntSet;
HSPLandroidx/collection/MutableIntSet;-><init>(I)V
HSPLandroidx/collection/MutableIntSet;->initializeGrowth()V
HSPLandroidx/collection/MutableIntSet;->initializeMetadata(I)V
HSPLandroidx/collection/MutableIntSet;->initializeStorage(I)V
Landroidx/collection/MutableObjectIntMap;
HPLandroidx/collection/MutableObjectIntMap;-><init>(I)V
HPLandroidx/collection/MutableObjectIntMap;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/MutableObjectIntMap;->adjustStorage()V
HPLandroidx/collection/MutableObjectIntMap;->findFirstAvailableSlot(I)I
HPLandroidx/collection/MutableObjectIntMap;->findIndex(Ljava/lang/Object;)I
HPLandroidx/collection/MutableObjectIntMap;->initializeGrowth()V
HPLandroidx/collection/MutableObjectIntMap;->initializeMetadata(I)V
HPLandroidx/collection/MutableObjectIntMap;->initializeStorage(I)V
HPLandroidx/collection/MutableObjectIntMap;->put(Ljava/lang/Object;II)I
HSPLandroidx/collection/MutableObjectIntMap;->removeValueAt(I)V
HPLandroidx/collection/MutableObjectIntMap;->resizeStorage(I)V
HSPLandroidx/collection/MutableObjectIntMap;->set(Ljava/lang/Object;I)V
Landroidx/collection/MutableScatterMap;
HSPLandroidx/collection/MutableScatterMap;-><init>(I)V
HSPLandroidx/collection/MutableScatterMap;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/collection/MutableScatterMap;->adjustStorage()V
HSPLandroidx/collection/MutableScatterMap;->clear()V
HPLandroidx/collection/MutableScatterMap;->findFirstAvailableSlot(I)I
HPLandroidx/collection/MutableScatterMap;->findInsertIndex(Ljava/lang/Object;)I
HPLandroidx/collection/MutableScatterMap;->initializeGrowth()V
HPLandroidx/collection/MutableScatterMap;->initializeMetadata(I)V
HPLandroidx/collection/MutableScatterMap;->initializeStorage(I)V
HSPLandroidx/collection/MutableScatterMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/MutableScatterMap;->removeValueAt(I)Ljava/lang/Object;
HPLandroidx/collection/MutableScatterMap;->resizeStorage(I)V
HPLandroidx/collection/MutableScatterMap;->set(Ljava/lang/Object;Ljava/lang/Object;)V
Landroidx/collection/MutableScatterSet;
HPLandroidx/collection/MutableScatterSet;-><init>(I)V
HSPLandroidx/collection/MutableScatterSet;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/collection/MutableScatterSet;->add(Ljava/lang/Object;)Z
HSPLandroidx/collection/MutableScatterSet;->adjustStorage()V
HPLandroidx/collection/MutableScatterSet;->clear()V
HPLandroidx/collection/MutableScatterSet;->findAbsoluteInsertIndex(Ljava/lang/Object;)I
HPLandroidx/collection/MutableScatterSet;->findFirstAvailableSlot(I)I
HPLandroidx/collection/MutableScatterSet;->initializeGrowth()V
HPLandroidx/collection/MutableScatterSet;->initializeMetadata(I)V
HPLandroidx/collection/MutableScatterSet;->initializeStorage(I)V
HSPLandroidx/collection/MutableScatterSet;->plusAssign(Ljava/lang/Object;)V
HSPLandroidx/collection/MutableScatterSet;->remove(Ljava/lang/Object;)Z
HSPLandroidx/collection/MutableScatterSet;->removeElementAt(I)V
HSPLandroidx/collection/MutableScatterSet;->resizeStorage(I)V
Landroidx/collection/ObjectIntMap;
HPLandroidx/collection/ObjectIntMap;-><init>()V
HPLandroidx/collection/ObjectIntMap;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/ObjectIntMap;->equals(Ljava/lang/Object;)Z
HSPLandroidx/collection/ObjectIntMap;->findKeyIndex(Ljava/lang/Object;)I
HPLandroidx/collection/ObjectIntMap;->getCapacity()I
HSPLandroidx/collection/ObjectIntMap;->getOrDefault(Ljava/lang/Object;I)I
HSPLandroidx/collection/ObjectIntMap;->getSize()I
HSPLandroidx/collection/ObjectIntMap;->isNotEmpty()Z
Landroidx/collection/ObjectIntMapKt;
HSPLandroidx/collection/ObjectIntMapKt;-><clinit>()V
HSPLandroidx/collection/ObjectIntMapKt;->emptyObjectIntMap()Landroidx/collection/ObjectIntMap;
Landroidx/collection/ScatterMap;
HPLandroidx/collection/ScatterMap;-><init>()V
HSPLandroidx/collection/ScatterMap;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/collection/ScatterMap;->containsKey(Ljava/lang/Object;)Z
HPLandroidx/collection/ScatterMap;->get(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/ScatterMap;->getCapacity()I
HSPLandroidx/collection/ScatterMap;->isEmpty()Z
HSPLandroidx/collection/ScatterMap;->isNotEmpty()Z
Landroidx/collection/ScatterMapKt;
HSPLandroidx/collection/ScatterMapKt;-><clinit>()V
HSPLandroidx/collection/ScatterMapKt;->loadedCapacity(I)I
HSPLandroidx/collection/ScatterMapKt;->mutableScatterMapOf()Landroidx/collection/MutableScatterMap;
HSPLandroidx/collection/ScatterMapKt;->nextCapacity(I)I
HPLandroidx/collection/ScatterMapKt;->normalizeCapacity(I)I
HSPLandroidx/collection/ScatterMapKt;->unloadedCapacity(I)I
Landroidx/collection/ScatterSet;
HPLandroidx/collection/ScatterSet;-><init>()V
HSPLandroidx/collection/ScatterSet;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/ScatterSet;->contains(Ljava/lang/Object;)Z
HSPLandroidx/collection/ScatterSet;->getCapacity()I
HSPLandroidx/collection/ScatterSet;->getSize()I
HSPLandroidx/collection/ScatterSet;->isEmpty()Z
Landroidx/collection/ScatterSetKt;
HSPLandroidx/collection/ScatterSetKt;-><clinit>()V
HSPLandroidx/collection/ScatterSetKt;->mutableScatterSetOf()Landroidx/collection/MutableScatterSet;
Landroidx/collection/SimpleArrayMap;
HSPLandroidx/collection/SimpleArrayMap;-><init>()V
HSPLandroidx/collection/SimpleArrayMap;-><init>(I)V
HSPLandroidx/collection/SimpleArrayMap;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/SimpleArrayMap;->clear()V
HSPLandroidx/collection/SimpleArrayMap;->containsKey(Ljava/lang/Object;)Z
HSPLandroidx/collection/SimpleArrayMap;->get(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/SimpleArrayMap;->indexOf(Ljava/lang/Object;I)I
HSPLandroidx/collection/SimpleArrayMap;->indexOfKey(Ljava/lang/Object;)I
HSPLandroidx/collection/SimpleArrayMap;->isEmpty()Z
HSPLandroidx/collection/SimpleArrayMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/SimpleArrayMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/SimpleArrayMap;->removeAt(I)Ljava/lang/Object;
HSPLandroidx/collection/SimpleArrayMap;->size()I
PLandroidx/collection/SimpleArrayMap;->valueAt(I)Ljava/lang/Object;
Landroidx/collection/SparseArrayCompat;
HSPLandroidx/collection/SparseArrayCompat;-><init>()V
HSPLandroidx/collection/SparseArrayCompat;-><init>(I)V
HSPLandroidx/collection/SparseArrayCompat;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/SparseArrayCompat;->get(I)Ljava/lang/Object;
HSPLandroidx/collection/SparseArrayCompat;->keyAt(I)I
HSPLandroidx/collection/SparseArrayCompat;->put(ILjava/lang/Object;)V
HSPLandroidx/collection/SparseArrayCompat;->size()I
HSPLandroidx/collection/SparseArrayCompat;->valueAt(I)Ljava/lang/Object;
Landroidx/collection/SparseArrayCompatKt;
HSPLandroidx/collection/SparseArrayCompatKt;-><clinit>()V
HSPLandroidx/collection/SparseArrayCompatKt;->access$getDELETED$p()Ljava/lang/Object;
HSPLandroidx/collection/SparseArrayCompatKt;->commonGet(Landroidx/collection/SparseArrayCompat;I)Ljava/lang/Object;
Landroidx/collection/SparseArrayKt;
HSPLandroidx/collection/SparseArrayKt;->valueIterator(Landroidx/collection/SparseArrayCompat;)Ljava/util/Iterator;
Landroidx/collection/SparseArrayKt$valueIterator$1;
HSPLandroidx/collection/SparseArrayKt$valueIterator$1;-><init>(Landroidx/collection/SparseArrayCompat;)V
HSPLandroidx/collection/SparseArrayKt$valueIterator$1;->hasNext()Z
Landroidx/collection/internal/ContainerHelpersKt;
HSPLandroidx/collection/internal/ContainerHelpersKt;-><clinit>()V
HSPLandroidx/collection/internal/ContainerHelpersKt;->binarySearch([III)I
HSPLandroidx/collection/internal/ContainerHelpersKt;->idealByteArraySize(I)I
HSPLandroidx/collection/internal/ContainerHelpersKt;->idealIntArraySize(I)I
HSPLandroidx/collection/internal/ContainerHelpersKt;->idealLongArraySize(I)I
Landroidx/collection/internal/Lock;
HSPLandroidx/collection/internal/Lock;-><init>()V
Landroidx/collection/internal/LruHashMap;
HSPLandroidx/collection/internal/LruHashMap;-><init>(IF)V
HSPLandroidx/collection/internal/LruHashMap;->get(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/internal/LruHashMap;->isEmpty()Z
HSPLandroidx/collection/internal/LruHashMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt;
HSPLandroidx/compose/animation/AnimatedContentKt;->AnimatedContent(Landroidx/compose/animation/core/Transition;Landroidx/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Alignment;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;Landroidx/compose/runtime/Composer;II)V
HSPLandroidx/compose/animation/AnimatedContentKt;->SizeTransform$default(ZLkotlin/jvm/functions/Function2;ILjava/lang/Object;)Landroidx/compose/animation/SizeTransform;
HSPLandroidx/compose/animation/AnimatedContentKt;->SizeTransform(ZLkotlin/jvm/functions/Function2;)Landroidx/compose/animation/SizeTransform;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1;-><init>(Landroidx/compose/animation/core/Transition;Ljava/lang/Object;Lkotlin/jvm/functions/Function1;Landroidx/compose/animation/AnimatedContentTransitionScopeImpl;Landroidx/compose/runtime/snapshots/SnapshotStateList;Lkotlin/jvm/functions/Function4;)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1;->invoke(Landroidx/compose/runtime/Composer;I)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$1;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$1;-><init>(Landroidx/compose/animation/ContentTransform;)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$1;->invoke-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$1$1;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$1$1;-><init>(Landroidx/compose/ui/layout/Placeable;Landroidx/compose/animation/ContentTransform;)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$1$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$3;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$3;-><init>(Ljava/lang/Object;)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$3;->invoke(Ljava/lang/Object;)Ljava/lang/Boolean;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$3;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$4$1;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$4$1;-><init>(Landroidx/compose/animation/ExitTransition;)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$4$1;->invoke(Landroidx/compose/animation/EnterExitState;Landroidx/compose/animation/EnterExitState;)Ljava/lang/Boolean;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$4$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$5;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$5;-><init>(Landroidx/compose/animation/AnimatedContentTransitionScopeImpl;Ljava/lang/Object;Landroidx/compose/runtime/snapshots/SnapshotStateList;Lkotlin/jvm/functions/Function4;)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$5;->invoke(Landroidx/compose/animation/AnimatedVisibilityScope;Landroidx/compose/runtime/Composer;I)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$5;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$5$1;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$5$1;-><init>(Landroidx/compose/runtime/snapshots/SnapshotStateList;Ljava/lang/Object;Landroidx/compose/animation/AnimatedContentTransitionScopeImpl;)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$5$1;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$5$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$5$1$invoke$$inlined$onDispose$1;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$5$1$invoke$$inlined$onDispose$1;-><init>(Landroidx/compose/runtime/snapshots/SnapshotStateList;Ljava/lang/Object;Landroidx/compose/animation/AnimatedContentTransitionScopeImpl;)V
PLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$1$5$1$invoke$$inlined$onDispose$1;->dispose()V
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$9;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$9;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Alignment;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;II)V
Landroidx/compose/animation/AnimatedContentKt$SizeTransform$1;
HSPLandroidx/compose/animation/AnimatedContentKt$SizeTransform$1;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedContentKt$SizeTransform$1;-><init>()V
Landroidx/compose/animation/AnimatedContentMeasurePolicy;
HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy;-><init>(Landroidx/compose/animation/AnimatedContentTransitionScopeImpl;)V
HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy;->getRootScope()Landroidx/compose/animation/AnimatedContentTransitionScopeImpl;
HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy;->measure-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Ljava/util/List;J)Landroidx/compose/ui/layout/MeasureResult;
Landroidx/compose/animation/AnimatedContentMeasurePolicy$measure$3;
HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$3;-><init>([Landroidx/compose/ui/layout/Placeable;Landroidx/compose/animation/AnimatedContentMeasurePolicy;II)V
HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$3;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$3;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentScope;
Landroidx/compose/animation/AnimatedContentScopeImpl;
HSPLandroidx/compose/animation/AnimatedContentScopeImpl;-><init>(Landroidx/compose/animation/AnimatedVisibilityScope;)V
Landroidx/compose/animation/AnimatedContentTransitionScope;
Landroidx/compose/animation/AnimatedContentTransitionScopeImpl;
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/ui/Alignment;Landroidx/compose/ui/unit/LayoutDirection;)V
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;->createSizeAnimationModifier$animation_release(Landroidx/compose/animation/ContentTransform;Landroidx/compose/runtime/Composer;I)Landroidx/compose/ui/Modifier;
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;->createSizeAnimationModifier$lambda$2(Landroidx/compose/runtime/MutableState;)Z
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;->createSizeAnimationModifier$lambda$3(Landroidx/compose/runtime/MutableState;Z)V
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;->getContentAlignment()Landroidx/compose/ui/Alignment;
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;->getInitialState()Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;->getTargetSizeMap$animation_release()Ljava/util/Map;
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;->getTargetState()Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;->setContentAlignment(Landroidx/compose/ui/Alignment;)V
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;->setLayoutDirection$animation_release(Landroidx/compose/ui/unit/LayoutDirection;)V
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl;->setMeasuredSize-ozmzZPI$animation_release(J)V
Landroidx/compose/animation/AnimatedContentTransitionScopeImpl$ChildData;
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl$ChildData;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl$ChildData;-><init>(Z)V
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl$ChildData;->all(Lkotlin/jvm/functions/Function1;)Z
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl$ChildData;->isTarget()Z
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl$ChildData;->modifyParentData(Landroidx/compose/ui/unit/Density;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedContentTransitionScopeImpl$ChildData;->setTarget(Z)V
Landroidx/compose/animation/AnimatedEnterExitMeasurePolicy;
HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy;-><init>(Landroidx/compose/animation/AnimatedVisibilityScopeImpl;)V
HPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy;->measure-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Ljava/util/List;J)Landroidx/compose/ui/layout/MeasureResult;
Landroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;
HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;-><init>(Ljava/util/List;)V
HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityKt;
HPLandroidx/compose/animation/AnimatedVisibilityKt;->AnimatedEnterExitImpl(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Lkotlin/jvm/functions/Function2;Landroidx/compose/animation/OnLookaheadMeasured;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt;->AnimatedVisibility(ZLandroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt;->AnimatedVisibilityImpl(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;I)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt;->access$getExitFinished(Landroidx/compose/animation/core/Transition;)Z
HSPLandroidx/compose/animation/AnimatedVisibilityKt;->getExitFinished(Landroidx/compose/animation/core/Transition;)Z
HSPLandroidx/compose/animation/AnimatedVisibilityKt;->targetEnterExit(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Ljava/lang/Object;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/EnterExitState;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$4;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$4;-><init>(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Lkotlin/jvm/functions/Function2;Landroidx/compose/animation/OnLookaheadMeasured;Lkotlin/jvm/functions/Function3;II)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$4;->invoke(Landroidx/compose/runtime/Composer;I)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$4;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/runtime/State;Lkotlin/coroutines/Continuation;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invoke(Landroidx/compose/runtime/ProduceStateScope;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;-><init>(Landroidx/compose/animation/core/Transition;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;->invoke()Ljava/lang/Boolean;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;->invoke()Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;-><init>(Landroidx/compose/runtime/ProduceStateScope;Landroidx/compose/animation/core/Transition;Landroidx/compose/runtime/State;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;->emit(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;->emit(ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$1;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$1;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$1;-><init>()V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$1;->invoke(Z)Ljava/lang/Boolean;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$2;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$2;-><init>(ZLandroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Lkotlin/jvm/functions/Function3;II)V
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$1$1;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$1$1;-><init>(Lkotlin/jvm/functions/Function1;Landroidx/compose/animation/core/Transition;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$1$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$1$1;->invoke-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$1$1$1;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$1$1$1;-><init>(Landroidx/compose/ui/layout/Placeable;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$1$1$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$1$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$2;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$2;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$2;-><init>()V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$2;->invoke(Landroidx/compose/animation/EnterExitState;Landroidx/compose/animation/EnterExitState;)Ljava/lang/Boolean;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$2;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityScope;
Landroidx/compose/animation/AnimatedVisibilityScopeImpl;
HSPLandroidx/compose/animation/AnimatedVisibilityScopeImpl;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedVisibilityScopeImpl;-><init>(Landroidx/compose/animation/core/Transition;)V
HSPLandroidx/compose/animation/AnimatedVisibilityScopeImpl;->getTargetSize$animation_release()Landroidx/compose/runtime/MutableState;
Landroidx/compose/animation/AnimationModifierKt;
HSPLandroidx/compose/animation/AnimationModifierKt;-><clinit>()V
HSPLandroidx/compose/animation/AnimationModifierKt;->getInvalidSize()J
HSPLandroidx/compose/animation/AnimationModifierKt;->isValid-ozmzZPI(J)Z
Landroidx/compose/animation/ChangeSize;
Landroidx/compose/animation/ContentTransform;
HSPLandroidx/compose/animation/ContentTransform;-><clinit>()V
HSPLandroidx/compose/animation/ContentTransform;-><init>(Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;FLandroidx/compose/animation/SizeTransform;)V
HSPLandroidx/compose/animation/ContentTransform;-><init>(Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;FLandroidx/compose/animation/SizeTransform;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/ContentTransform;->getSizeTransform()Landroidx/compose/animation/SizeTransform;
HSPLandroidx/compose/animation/ContentTransform;->getTargetContentEnter()Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/ContentTransform;->getTargetContentZIndex()F
Landroidx/compose/animation/EnterExitState;
HSPLandroidx/compose/animation/EnterExitState;->$values()[Landroidx/compose/animation/EnterExitState;
HSPLandroidx/compose/animation/EnterExitState;-><clinit>()V
HSPLandroidx/compose/animation/EnterExitState;-><init>(Ljava/lang/String;I)V
HSPLandroidx/compose/animation/EnterExitState;->values()[Landroidx/compose/animation/EnterExitState;
Landroidx/compose/animation/EnterExitTransitionElement;
HSPLandroidx/compose/animation/EnterExitTransitionElement;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;)V
HSPLandroidx/compose/animation/EnterExitTransitionElement;->create()Landroidx/compose/animation/EnterExitTransitionModifierNode;
HSPLandroidx/compose/animation/EnterExitTransitionElement;->create()Landroidx/compose/ui/Modifier$Node;
HSPLandroidx/compose/animation/EnterExitTransitionElement;->equals(Ljava/lang/Object;)Z
HSPLandroidx/compose/animation/EnterExitTransitionElement;->update(Landroidx/compose/animation/EnterExitTransitionModifierNode;)V
HSPLandroidx/compose/animation/EnterExitTransitionElement;->update(Landroidx/compose/ui/Modifier$Node;)V
Landroidx/compose/animation/EnterExitTransitionKt;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->$r8$lambda$1JgidYUxIRNwEZ0kscHeqkwDXjI(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)Lkotlin/jvm/functions/Function1;
HSPLandroidx/compose/animation/EnterExitTransitionKt;-><clinit>()V
HSPLandroidx/compose/animation/EnterExitTransitionKt;->createGraphicsLayerBlock$lambda$11(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)Lkotlin/jvm/functions/Function1;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->createGraphicsLayerBlock(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->createModifier(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Landroidx/compose/runtime/Composer;I)Landroidx/compose/ui/Modifier;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->fadeIn$default(Landroidx/compose/animation/core/FiniteAnimationSpec;FILjava/lang/Object;)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->fadeIn(Landroidx/compose/animation/core/FiniteAnimationSpec;F)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->fadeOut$default(Landroidx/compose/animation/core/FiniteAnimationSpec;FILjava/lang/Object;)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->fadeOut(Landroidx/compose/animation/core/FiniteAnimationSpec;F)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->slideOut(Landroidx/compose/animation/core/FiniteAnimationSpec;Lkotlin/jvm/functions/Function1;)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->slideOutVertically(Landroidx/compose/animation/core/FiniteAnimationSpec;Lkotlin/jvm/functions/Function1;)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter$lambda$4(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter$lambda$5(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/EnterTransition;)V
HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit$lambda$7(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit$lambda$8(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/ExitTransition;)V
HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/ExitTransition;
Landroidx/compose/animation/EnterExitTransitionKt$$ExternalSyntheticLambda0;
HSPLandroidx/compose/animation/EnterExitTransitionKt$$ExternalSyntheticLambda0;-><init>(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)V
HSPLandroidx/compose/animation/EnterExitTransitionKt$$ExternalSyntheticLambda0;->init()Lkotlin/jvm/functions/Function1;
Landroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$1;
HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$1;-><clinit>()V
HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$1;-><init>()V
Landroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$2;
HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$2;-><clinit>()V
HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$2;-><init>()V
Landroidx/compose/animation/EnterExitTransitionKt$createGraphicsLayerBlock$1$block$1;
HSPLandroidx/compose/animation/EnterExitTransitionKt$createGraphicsLayerBlock$1$block$1;-><init>(Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;)V
HSPLandroidx/compose/animation/EnterExitTransitionKt$createGraphicsLayerBlock$1$block$1;->invoke(Landroidx/compose/ui/graphics/GraphicsLayerScope;)V
HSPLandroidx/compose/animation/EnterExitTransitionKt$createGraphicsLayerBlock$1$block$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/EnterExitTransitionKt$slideOutVertically$2;
HSPLandroidx/compose/animation/EnterExitTransitionKt$slideOutVertically$2;-><init>(Lkotlin/jvm/functions/Function1;)V
HSPLandroidx/compose/animation/EnterExitTransitionKt$slideOutVertically$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/EnterExitTransitionKt$slideOutVertically$2;->invoke-mHKZG7I(J)J
Landroidx/compose/animation/EnterExitTransitionModifierNode;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->getAlignment()Landroidx/compose/ui/Alignment;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->getExit()Landroidx/compose/animation/ExitTransition;
HPLandroidx/compose/animation/EnterExitTransitionModifierNode;->measure-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->onAttach()V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->setEnter(Landroidx/compose/animation/EnterTransition;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->setExit(Landroidx/compose/animation/ExitTransition;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->setGraphicsLayerBlock(Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->setOffsetAnimation(Landroidx/compose/animation/core/Transition$DeferredAnimation;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->setSizeAnimation(Landroidx/compose/animation/core/Transition$DeferredAnimation;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->setSlideAnimation(Landroidx/compose/animation/core/Transition$DeferredAnimation;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->setTransition(Landroidx/compose/animation/core/Transition;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->slideTargetValueByState-oFUgxo0(Landroidx/compose/animation/EnterExitState;J)J
Landroidx/compose/animation/EnterExitTransitionModifierNode$WhenMappings;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$WhenMappings;-><clinit>()V
Landroidx/compose/animation/EnterExitTransitionModifierNode$measure$2;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$2;-><init>(Landroidx/compose/ui/layout/Placeable;JJLkotlin/jvm/functions/Function1;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$2;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/EnterExitTransitionModifierNode$measure$slideOffset$1;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$slideOffset$1;-><init>(Landroidx/compose/animation/EnterExitTransitionModifierNode;J)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$slideOffset$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$slideOffset$1;->invoke-Bjo55l4(Landroidx/compose/animation/EnterExitState;)J
Landroidx/compose/animation/EnterExitTransitionModifierNode$sizeTransitionSpec$1;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$sizeTransitionSpec$1;-><init>(Landroidx/compose/animation/EnterExitTransitionModifierNode;)V
Landroidx/compose/animation/EnterExitTransitionModifierNode$slideSpec$1;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$slideSpec$1;-><init>(Landroidx/compose/animation/EnterExitTransitionModifierNode;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$slideSpec$1;->invoke(Landroidx/compose/animation/core/Transition$Segment;)Landroidx/compose/animation/core/FiniteAnimationSpec;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$slideSpec$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterTransition;-><clinit>()V
HSPLandroidx/compose/animation/EnterTransition;-><init>()V
HSPLandroidx/compose/animation/EnterTransition;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/EnterTransition;->access$getNone$cp()Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterTransition;->equals(Ljava/lang/Object;)Z
Landroidx/compose/animation/EnterTransition$Companion;
HSPLandroidx/compose/animation/EnterTransition$Companion;-><init>()V
HSPLandroidx/compose/animation/EnterTransition$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/EnterTransition$Companion;->getNone()Landroidx/compose/animation/EnterTransition;
Landroidx/compose/animation/EnterTransitionImpl;
HSPLandroidx/compose/animation/EnterTransitionImpl;-><init>(Landroidx/compose/animation/TransitionData;)V
HSPLandroidx/compose/animation/EnterTransitionImpl;->getData$animation_release()Landroidx/compose/animation/TransitionData;
Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/ExitTransition;-><clinit>()V
HSPLandroidx/compose/animation/ExitTransition;-><init>()V
HSPLandroidx/compose/animation/ExitTransition;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/ExitTransition;->access$getNone$cp()Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/ExitTransition;->equals(Ljava/lang/Object;)Z
HSPLandroidx/compose/animation/ExitTransition;->plus(Landroidx/compose/animation/ExitTransition;)Landroidx/compose/animation/ExitTransition;
Landroidx/compose/animation/ExitTransition$Companion;
HSPLandroidx/compose/animation/ExitTransition$Companion;-><init>()V
HSPLandroidx/compose/animation/ExitTransition$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/ExitTransition$Companion;->getNone()Landroidx/compose/animation/ExitTransition;
Landroidx/compose/animation/ExitTransitionImpl;
HSPLandroidx/compose/animation/ExitTransitionImpl;-><init>(Landroidx/compose/animation/TransitionData;)V
HSPLandroidx/compose/animation/ExitTransitionImpl;->getData$animation_release()Landroidx/compose/animation/TransitionData;
Landroidx/compose/animation/Fade;
HSPLandroidx/compose/animation/Fade;-><clinit>()V
HSPLandroidx/compose/animation/Fade;-><init>(FLandroidx/compose/animation/core/FiniteAnimationSpec;)V
Landroidx/compose/animation/FlingCalculator;
HSPLandroidx/compose/animation/FlingCalculator;-><clinit>()V
HSPLandroidx/compose/animation/FlingCalculator;-><init>(FLandroidx/compose/ui/unit/Density;)V
HSPLandroidx/compose/animation/FlingCalculator;->computeDeceleration(Landroidx/compose/ui/unit/Density;)F
Landroidx/compose/animation/FlingCalculatorKt;
HSPLandroidx/compose/animation/FlingCalculatorKt;-><clinit>()V
HSPLandroidx/compose/animation/FlingCalculatorKt;->access$computeDeceleration(FF)F
HSPLandroidx/compose/animation/FlingCalculatorKt;->computeDeceleration(FF)F
Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;
Landroidx/compose/animation/LayoutModifierNodeWithPassThroughIntrinsics;
HSPLandroidx/compose/animation/LayoutModifierNodeWithPassThroughIntrinsics;-><clinit>()V
HSPLandroidx/compose/animation/LayoutModifierNodeWithPassThroughIntrinsics;-><init>()V
Landroidx/compose/animation/OnLookaheadMeasured;
Landroidx/compose/animation/Scale;
Landroidx/compose/animation/SizeTransform;
Landroidx/compose/animation/SizeTransformImpl;
HSPLandroidx/compose/animation/SizeTransformImpl;-><init>(ZLkotlin/jvm/functions/Function2;)V
Landroidx/compose/animation/Slide;
HSPLandroidx/compose/animation/Slide;-><clinit>()V
HSPLandroidx/compose/animation/Slide;-><init>(Lkotlin/jvm/functions/Function1;Landroidx/compose/animation/core/FiniteAnimationSpec;)V
HSPLandroidx/compose/animation/Slide;->equals(Ljava/lang/Object;)Z
HSPLandroidx/compose/animation/Slide;->getAnimationSpec()Landroidx/compose/animation/core/FiniteAnimationSpec;
HSPLandroidx/compose/animation/Slide;->getSlideOffset()Lkotlin/jvm/functions/Function1;
Landroidx/compose/animation/SplineBasedDecayKt;
HSPLandroidx/compose/animation/SplineBasedDecayKt;->splineBasedDecay(Landroidx/compose/ui/unit/Density;)Landroidx/compose/animation/core/DecayAnimationSpec;
Landroidx/compose/animation/SplineBasedFloatDecayAnimationSpec;
HSPLandroidx/compose/animation/SplineBasedFloatDecayAnimationSpec;-><clinit>()V
HSPLandroidx/compose/animation/SplineBasedFloatDecayAnimationSpec;-><init>(Landroidx/compose/ui/unit/Density;)V
Landroidx/compose/animation/SplineBasedFloatDecayAnimationSpec_androidKt;
HSPLandroidx/compose/animation/SplineBasedFloatDecayAnimationSpec_androidKt;-><clinit>()V
HSPLandroidx/compose/animation/SplineBasedFloatDecayAnimationSpec_androidKt;->getPlatformFlingScrollFriction()F
HSPLandroidx/compose/animation/SplineBasedFloatDecayAnimationSpec_androidKt;->rememberSplineBasedDecay(Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/core/DecayAnimationSpec;
Landroidx/compose/animation/TransitionData;
HSPLandroidx/compose/animation/TransitionData;-><clinit>()V
HSPLandroidx/compose/animation/TransitionData;-><init>(Landroidx/compose/animation/Fade;Landroidx/compose/animation/Slide;Landroidx/compose/animation/ChangeSize;Landroidx/compose/animation/Scale;ZLjava/util/Map;)V
HSPLandroidx/compose/animation/TransitionData;-><init>(Landroidx/compose/animation/Fade;Landroidx/compose/animation/Slide;Landroidx/compose/animation/ChangeSize;Landroidx/compose/animation/Scale;ZLjava/util/Map;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/TransitionData;->equals(Ljava/lang/Object;)Z
HSPLandroidx/compose/animation/TransitionData;->getChangeSize()Landroidx/compose/animation/ChangeSize;
HSPLandroidx/compose/animation/TransitionData;->getEffectsMap()Ljava/util/Map;
HSPLandroidx/compose/animation/TransitionData;->getFade()Landroidx/compose/animation/Fade;
HSPLandroidx/compose/animation/TransitionData;->getHold()Z
HSPLandroidx/compose/animation/TransitionData;->getScale()Landroidx/compose/animation/Scale;
HSPLandroidx/compose/animation/TransitionData;->getSlide()Landroidx/compose/animation/Slide;
Landroidx/compose/animation/core/Animatable;
HSPLandroidx/compose/animation/core/Animatable;-><clinit>()V
HPLandroidx/compose/animation/core/Animatable;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;Ljava/lang/String;)V
HSPLandroidx/compose/animation/core/Animatable;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/core/Animatable;->asState()Landroidx/compose/runtime/State;
HSPLandroidx/compose/animation/core/Animatable;->getTargetValue()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/Animatable;->getValue()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/Animatable;->getVelocityVector()Landroidx/compose/animation/core/AnimationVector;
Landroidx/compose/animation/core/AnimatableKt;
HSPLandroidx/compose/animation/core/AnimatableKt;-><clinit>()V
HSPLandroidx/compose/animation/core/AnimatableKt;->Animatable$default(FFILjava/lang/Object;)Landroidx/compose/animation/core/Animatable;
HSPLandroidx/compose/animation/core/AnimatableKt;->Animatable(FF)Landroidx/compose/animation/core/Animatable;
HSPLandroidx/compose/animation/core/AnimatableKt;->access$getNegativeInfinityBounds1D$p()Landroidx/compose/animation/core/AnimationVector1D;
HSPLandroidx/compose/animation/core/AnimatableKt;->access$getPositiveInfinityBounds1D$p()Landroidx/compose/animation/core/AnimationVector1D;
Landroidx/compose/animation/core/AnimateAsStateKt;
HSPLandroidx/compose/animation/core/AnimateAsStateKt;-><clinit>()V
HSPLandroidx/compose/animation/core/AnimateAsStateKt;->animateFloatAsState(FLandroidx/compose/animation/core/AnimationSpec;FLjava/lang/String;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)Landroidx/compose/runtime/State;
HSPLandroidx/compose/animation/core/AnimateAsStateKt;->animateValueAsState(Ljava/lang/Object;Landroidx/compose/animation/core/TwoWayConverter;Landroidx/compose/animation/core/AnimationSpec;Ljava/lang/Object;Ljava/lang/String;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)Landroidx/compose/runtime/State;
Landroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$2;
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$2;-><init>(Lkotlinx/coroutines/channels/Channel;Ljava/lang/Object;)V
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$2;->invoke()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$2;->invoke()V
Landroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3;
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3;-><init>(Lkotlinx/coroutines/channels/Channel;Landroidx/compose/animation/core/Animatable;Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;Lkotlin/coroutines/Continuation;)V
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3$1;
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3$1;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/Animatable;Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;Lkotlin/coroutines/Continuation;)V
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3$1;->cr
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
Condensed preview — 378 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (7,529K chars).
[
{
"path": ".editorconfig",
"chars": 190,
"preview": "# https://editorconfig.org/\n# This configuration is used by ktlint when spotless invokes it\n\n[*.{kt,kts}]\nij_kotlin_allo"
},
{
"path": ".github/ISSUE_TEMPLATE/bug_report.md",
"chars": 133,
"preview": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: \"[Bug] \"\nlabels: bug\nassignees: ''\n\n---\n\n## 현상\n\n- "
},
{
"path": ".github/ISSUE_TEMPLATE/feature_request.md",
"chars": 134,
"preview": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n## 설명\n\n- \n\n##"
},
{
"path": ".github/auto_assign.yml",
"chars": 349,
"preview": "# Set to true to add reviewers to pull requests\naddReviewers: true\n\n# Set to true to add assignees to pull requests\naddA"
},
{
"path": ".github/ci-gradle.properties",
"chars": 702,
"preview": "\n#\n# Copyright 2020 The Android Open Source Project\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n"
},
{
"path": ".github/workflows/build.yaml",
"chars": 1139,
"preview": "name: Build & test\n\non:\n push:\n branches:\n - develop\n paths-ignore:\n - '**.md'\n pull_request:\n path"
},
{
"path": ".gitignore",
"chars": 759,
"preview": "# Built application files\n*.apk\n*.ap_\n\n# Files for the ART/Dalvik VM\n*.dex\n\n# Java class files\n*.class\n\n# Generated file"
},
{
"path": "CHECK.md",
"chars": 453,
"preview": "# Check before PR\n\n### Run all checks at once:\n\n```bash\n./check.sh\n```\n\n### Run checks individually\n\n- dependencyGuard\n`"
},
{
"path": "LICENSE",
"chars": 11334,
"preview": " Apache License\n Version 2.0, January 2004\n "
},
{
"path": "README.md",
"chars": 1757,
"preview": "<p align=\"center\">\n<img height=\"200\" src='https://github.com/fornewid/Moop-Android/blob/develop/app/src/main/ic_launcher"
},
{
"path": "app/.gitignore",
"chars": 16,
"preview": "/build\n/release\n"
},
{
"path": "app/build.gradle",
"chars": 4684,
"preview": "plugins {\n id \"moop.android.application\"\n id \"moop.android.compose\"\n id \"moop.android.hilt\"\n id \"org.jetbrai"
},
{
"path": "app/dependencies/releaseRuntimeClasspath.txt",
"chars": 10773,
"preview": "androidx.activity:activity-compose:1.12.1\nandroidx.activity:activity-ktx:1.12.1\nandroidx.activity:activity:1.12.1\nandroi"
},
{
"path": "app/proguard-rules.pro",
"chars": 1421,
"preview": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguar"
},
{
"path": "app/src/androidTest/java/soup/movie/ExampleInstrumentedTest.kt",
"chars": 1222,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "app/src/debug/res/drawable/ic_launcher_foreground.xml",
"chars": 3981,
"preview": "<!--\nCopyright (C) 2015 The Android Open Source Project\n\n Licensed under the Apache License, Version 2.0 (the \"License"
},
{
"path": "app/src/debug/res/drawable/ic_launcher_foreground_dark.xml",
"chars": 3739,
"preview": "<!--\nCopyright (C) 2015 The Android Open Source Project\n\n Licensed under the Apache License, Version 2.0 (the \"License"
},
{
"path": "app/src/debug/res/drawable/ic_launcher_monochrome.xml",
"chars": 1266,
"preview": "<!--\nCopyright (C) 2015 The Android Open Source Project\n\n Licensed under the Apache License, Version 2.0 (the \"License"
},
{
"path": "app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml",
"chars": 341,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n <b"
},
{
"path": "app/src/main/AndroidManifest.xml",
"chars": 1630,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n xmlns:to"
},
{
"path": "app/src/main/java/soup/movie/MovieApplication.kt",
"chars": 987,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "app/src/main/java/soup/movie/di/AppModule.kt",
"chars": 992,
"preview": "/*\n * Copyright 2025 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "app/src/main/java/soup/movie/di/ApplicationModule.kt",
"chars": 954,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "app/src/main/java/soup/movie/di/MainNavigatorImpl.kt",
"chars": 1151,
"preview": "/*\n * Copyright 2023 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "app/src/main/java/soup/movie/startup/LoggerInitializer.kt",
"chars": 1069,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "app/src/main/java/soup/movie/ui/main/MainActivity.kt",
"chars": 5666,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "app/src/main/java/soup/movie/ui/main/MainViewModel.kt",
"chars": 1250,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "app/src/main/java/soup/movie/ui/main/NavigationState.kt",
"chars": 2656,
"preview": "/*\n * Copyright 2025 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "app/src/main/java/soup/movie/ui/main/NavigatorImpl.kt",
"chars": 1706,
"preview": "/*\n * Copyright 2025 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "app/src/main/res/drawable/ic_launcher_foreground.xml",
"chars": 2167,
"preview": "<!--\nCopyright (C) 2015 The Android Open Source Project\n\n Licensed under the Apache License, Version 2.0 (the \"License"
},
{
"path": "app/src/main/res/drawable/ic_launcher_foreground_dark.xml",
"chars": 2167,
"preview": "<!--\nCopyright (C) 2015 The Android Open Source Project\n\n Licensed under the Apache License, Version 2.0 (the \"License"
},
{
"path": "app/src/main/res/drawable/ic_launcher_monochrome.xml",
"chars": 1228,
"preview": "<!--\nCopyright (C) 2015 The Android Open Source Project\n\n Licensed under the Apache License, Version 2.0 (the \"License"
},
{
"path": "app/src/main/res/drawable/ic_splash.xml",
"chars": 253,
"preview": "<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n <item android:drawable=\"?android:attr/color"
},
{
"path": "app/src/main/res/drawable/icon_v0.xml",
"chars": 688,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:wi"
},
{
"path": "app/src/main/res/drawable/icon_v1.xml",
"chars": 2203,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\nCopyright (C) 2015 The Android Open Source Project\n\n Licensed under the Ap"
},
{
"path": "app/src/main/res/drawable/icon_v1_1.xml",
"chars": 1935,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\nCopyright (C) 2015 The Android Open Source Project\n\n Licensed under the Ap"
},
{
"path": "app/src/main/res/drawable/icon_v1_2.xml",
"chars": 2277,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\nCopyright (C) 2015 The Android Open Source Project\n\n Licensed under the Ap"
},
{
"path": "app/src/main/res/drawable/icon_v1_3.xml",
"chars": 2277,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\nCopyright (C) 2015 The Android Open Source Project\n\n Licensed under the Ap"
},
{
"path": "app/src/main/res/drawable/icon_v1_4.xml",
"chars": 2318,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\nCopyright (C) 2015 The Android Open Source Project\n\n Licensed under the Ap"
},
{
"path": "app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml",
"chars": 339,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n <b"
},
{
"path": "app/src/main/res/mipmap-night-anydpi-v26/ic_launcher.xml",
"chars": 278,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<adaptive-icon xmlns:android=\"http://schemas.android.com/apk/res/android\">\n <b"
},
{
"path": "app/src/main/res/values/colors.xml",
"chars": 183,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n <color name=\"ic_launcher_background\">#FFFFFF</color>\n <color n"
},
{
"path": "app/src/main/res/values/dimens.xml",
"chars": 109,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n <dimen name=\"app_icon_size\">48dp</dimen>\n</resources>\n"
},
{
"path": "app/src/main/res/values/strings.xml",
"chars": 256,
"preview": "<resources>\n <string name=\"app_name\">Moop</string>\n\n <string name=\"shortcut_search_short_label\">Theater</string>\n "
},
{
"path": "app/src/main/res/values/strings_no_translate.xml",
"chars": 119,
"preview": "<resources>\n <!-- navigation -->\n <string name=\"map_label\" translatable=\"false\">TheaterMap</string>\n</resources>\n"
},
{
"path": "app/src/main/res/values/sys_ui.xml",
"chars": 654,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n <!-- When in 'light' mode, we use a light scrim and light status "
},
{
"path": "app/src/main/res/values/themes.xml",
"chars": 948,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n <style name=\"Platform.V23.Theme.Moop\" parent=\"Theme.AppCompat.Da"
},
{
"path": "app/src/main/res/values-ko/strings.xml",
"chars": 244,
"preview": "<resources>\n <string name=\"app_name\">뭅</string>\n\n <string name=\"shortcut_search_short_label\">주변극장</string>\n <st"
},
{
"path": "app/src/main/res/values-night/sys_ui.xml",
"chars": 455,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n <!-- When in 'night' mode, we use a dark scrim and dark status ba"
},
{
"path": "app/src/main/res/values-notnight-v27/sys_ui.xml",
"chars": 254,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n <!-- We use a light scrim on API 27+ since we use a light nav bar"
},
{
"path": "app/src/main/res/values-v27/themes.xml",
"chars": 564,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n <style name=\"Platform.V27.Theme.Moop\" parent=\"Theme.AppCompat.Da"
},
{
"path": "app/src/main/res/values-v29/themes.xml",
"chars": 562,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n <style name=\"Platform.V29.Theme.Moop\" parent=\"Theme.AppCompat.Da"
},
{
"path": "app/src/release/generated/baselineProfiles/baseline-prof.txt",
"chars": 3441851,
"preview": "Landroidx/activity/Cancellable;\nLandroidx/activity/ComponentActivity;\nHSPLandroidx/activity/ComponentActivity;->$r8$lamb"
},
{
"path": "app/src/release/generated/baselineProfiles/startup-prof.txt",
"chars": 3441851,
"preview": "Landroidx/activity/Cancellable;\nLandroidx/activity/ComponentActivity;\nHSPLandroidx/activity/ComponentActivity;->$r8$lamb"
},
{
"path": "app/src/test/java/soup/movie/ExampleUnitTest.kt",
"chars": 944,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "build-logic/convention/build.gradle.kts",
"chars": 1429,
"preview": "import org.jetbrains.kotlin.gradle.dsl.JvmTarget\n\nplugins {\n `kotlin-dsl`\n}\n\ngroup = \"soup.movie.buildlogic\"\n\njava {\n"
},
{
"path": "build-logic/convention/src/main/kotlin/AndroidApplicationConventionPlugin.kt",
"chars": 740,
"preview": "import org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.kotlin.dsl.dependencies\nimport soup.movie.b"
},
{
"path": "build-logic/convention/src/main/kotlin/AndroidBuildConfigConventionPlugin.kt",
"chars": 504,
"preview": "import org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport soup.movie.buildlogic.configureAndroid\nimport soup.mov"
},
{
"path": "build-logic/convention/src/main/kotlin/AndroidComposeConventionPlugin.kt",
"chars": 277,
"preview": "import org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport soup.movie.buildlogic.configureCompose\n\nclass AndroidC"
},
{
"path": "build-logic/convention/src/main/kotlin/AndroidHiltConventionPlugin.kt",
"chars": 835,
"preview": "import org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.api.artifacts.VersionCatalogsExtension\nimpo"
},
{
"path": "build-logic/convention/src/main/kotlin/AndroidLibraryConventionPlugin.kt",
"chars": 1230,
"preview": "import com.android.build.gradle.LibraryExtension\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.g"
},
{
"path": "build-logic/convention/src/main/kotlin/AndroidTestConventionPlugin.kt",
"chars": 493,
"preview": "import org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport soup.movie.buildlogic.configureAndroid\nimport soup.mov"
},
{
"path": "build-logic/convention/src/main/kotlin/soup/movie/buildlogic/Android.kt",
"chars": 786,
"preview": "package soup.movie.buildlogic\n\nimport com.android.build.gradle.BaseExtension\nimport org.gradle.api.JavaVersion\nimport or"
},
{
"path": "build-logic/convention/src/main/kotlin/soup/movie/buildlogic/Compose.kt",
"chars": 968,
"preview": "package soup.movie.buildlogic\n\nimport com.android.build.gradle.BaseExtension\nimport org.gradle.api.Project\nimport org.gr"
},
{
"path": "build-logic/convention/src/main/kotlin/soup/movie/buildlogic/Dependencies.kt",
"chars": 1053,
"preview": "package soup.movie.buildlogic\n\nimport org.gradle.api.artifacts.Dependency\nimport org.gradle.api.artifacts.dsl.Dependency"
},
{
"path": "build-logic/convention/src/main/kotlin/soup/movie/buildlogic/Kotlin.kt",
"chars": 874,
"preview": "package soup.movie.buildlogic\n\nimport org.gradle.api.Project\nimport org.gradle.kotlin.dsl.withType\nimport org.jetbrains."
},
{
"path": "build-logic/convention/src/main/kotlin/soup/movie/buildlogic/Versions.kt",
"chars": 136,
"preview": "package soup.movie.buildlogic\n\nobject Versions {\n const val minSdk = 26\n const val compileSdk = 36\n const val t"
},
{
"path": "build-logic/gradle.properties",
"chars": 182,
"preview": "# Gradle properties are not passed to included builds https://github.com/gradle/gradle/issues/2534\norg.gradle.parallel=t"
},
{
"path": "build-logic/settings.gradle.kts",
"chars": 243,
"preview": "dependencyResolutionManagement {\n repositories {\n google()\n mavenCentral()\n }\n versionCatalogs {\n"
},
{
"path": "build.gradle",
"chars": 895,
"preview": "plugins {\n alias(libs.plugins.android.application) apply false\n alias(libs.plugins.android.library) apply false\n "
},
{
"path": "check.sh",
"chars": 680,
"preview": "#!/bin/bash\n# Check script for PR submission\n# Validates dependencies, code formatting, lint.\n\n# Exit immediately if any"
},
{
"path": "core/buildconfig/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "core/buildconfig/build.gradle",
"chars": 549,
"preview": "plugins {\n id \"moop.android.buildconfig\"\n}\n\nandroid {\n namespace 'soup.movie.buildconfig'\n\n defaultConfig {\n "
},
{
"path": "core/buildconfig/src/main/AndroidManifest.xml",
"chars": 52,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest />\n"
},
{
"path": "core/buildconfig-stub/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "core/buildconfig-stub/build.gradle",
"chars": 398,
"preview": "plugins {\n id \"moop.android.buildconfig\"\n}\n\nandroid {\n namespace 'soup.movie.buildconfig'\n\n defaultConfig {\n "
},
{
"path": "core/buildconfig-stub/src/main/AndroidManifest.xml",
"chars": 52,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest />\n"
},
{
"path": "core/datetime/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "core/datetime/build.gradle",
"chars": 268,
"preview": "plugins {\n id \"moop.android.library\"\n}\n\nandroid {\n namespace \"soup.movie.datetime\"\n}\n\ndependencies {\n implement"
},
{
"path": "core/datetime/src/main/AndroidManifest.xml",
"chars": 52,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest />\n"
},
{
"path": "core/datetime/src/main/java/soup/movie/datetime/DateHelper.kt",
"chars": 2157,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/datetime/src/test/java/soup/movie/datetime/DataHelperTest.kt",
"chars": 1950,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/designsystem/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "core/designsystem/build.gradle",
"chars": 443,
"preview": "plugins {\n id \"moop.android.library\"\n id \"moop.android.compose\"\n}\n\nandroid {\n namespace \"soup.movie.core.design"
},
{
"path": "core/designsystem/src/main/AndroidManifest.xml",
"chars": 13,
"preview": "<manifest />\n"
},
{
"path": "core/designsystem/src/main/java/soup/movie/core/designsystem/icon/MovieIcons.kt",
"chars": 2556,
"preview": "/*\n * Copyright 2023 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/designsystem/src/main/java/soup/movie/core/designsystem/theme/Colors.kt",
"chars": 3046,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/designsystem/src/main/java/soup/movie/core/designsystem/theme/Themes.kt",
"chars": 2544,
"preview": "/*\n * Copyright 2022 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/designsystem/src/main/java/soup/movie/core/designsystem/util/Debounce.kt",
"chars": 866,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/designsystem/src/main/res/drawable/avd_favorite_selected.xml",
"chars": 2298,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<animated-vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n x"
},
{
"path": "core/designsystem/src/main/res/drawable/avd_home_now_selected.xml",
"chars": 2512,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<animated-vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n x"
},
{
"path": "core/designsystem/src/main/res/drawable/filter_chip_cgv_cancel.xml",
"chars": 449,
"preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:width=\"12dp\"\n android:height=\"12dp\"\n "
},
{
"path": "core/designsystem/src/main/res/drawable/filter_chip_lotte_cancel.xml",
"chars": 478,
"preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:width=\"12dp\"\n android:height=\"12dp\"\n "
},
{
"path": "core/designsystem/src/main/res/drawable/filter_chip_megabox_cancel.xml",
"chars": 478,
"preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:width=\"12dp\"\n android:height=\"12dp\"\n "
},
{
"path": "core/designsystem/src/main/res/drawable/ic_imdb.xml",
"chars": 2063,
"preview": "<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n <item\n android:width=\"48dp\"\n a"
},
{
"path": "core/designsystem/src/main/res/drawable/ic_loading_logo.xml",
"chars": 1456,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:wi"
},
{
"path": "core/designsystem/src/main/res/drawable/ic_logo_youtube.xml",
"chars": 753,
"preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:width=\"24dp\"\n android:height=\"24dp\"\n "
},
{
"path": "core/designsystem/src/main/res/drawable/ic_metacritic.xml",
"chars": 1390,
"preview": "<layer-list xmlns:android=\"http://schemas.android.com/apk/res/android\">\n <item\n android:width=\"24dp\"\n a"
},
{
"path": "core/designsystem/src/main/res/drawable/ic_rt.xml",
"chars": 1170,
"preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:width=\"24dp\"\n android:height=\"24dp\"\n "
},
{
"path": "core/designsystem/src/main/res/drawable/ic_splash_launcher.xml",
"chars": 3746,
"preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:width=\"200dp\"\n android:height=\"80dp\"\n "
},
{
"path": "core/external/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "core/external/build.gradle",
"chars": 235,
"preview": "plugins {\n id \"moop.android.library\"\n}\n\nandroid {\n namespace \"soup.movie.core.external\"\n}\n\ndependencies {\n impl"
},
{
"path": "core/external/src/main/AndroidManifest.xml",
"chars": 13,
"preview": "<manifest />\n"
},
{
"path": "core/external/src/main/java/soup/movie/core/external/Context.kt",
"chars": 2306,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/external/src/main/java/soup/movie/core/external/YouTube.kt",
"chars": 2557,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/external/src/main/res/anim/fade_in.xml",
"chars": 353,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:durat"
},
{
"path": "core/external/src/main/res/anim/fade_out.xml",
"chars": 353,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<set xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:durat"
},
{
"path": "core/imageloading/api/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "core/imageloading/api/build.gradle",
"chars": 267,
"preview": "plugins {\n id \"moop.android.library\"\n id \"moop.android.compose\"\n}\n\nandroid {\n namespace \"soup.movie.core.imagel"
},
{
"path": "core/imageloading/api/src/main/AndroidManifest.xml",
"chars": 13,
"preview": "<manifest />\n"
},
{
"path": "core/imageloading/api/src/main/java/soup/movie/core/imageloading/AsyncImage.kt",
"chars": 2214,
"preview": "/*\n * Copyright 2023 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/imageloading/impl/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "core/imageloading/impl/build.gradle",
"chars": 327,
"preview": "plugins {\n id \"moop.android.library\"\n}\n\nandroid {\n namespace \"soup.movie.core.imageloading.impl\"\n}\n\ndependencies {"
},
{
"path": "core/imageloading/impl/src/main/AndroidManifest.xml",
"chars": 570,
"preview": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n xmlns:tools=\"http://schemas.android.com/tools\">"
},
{
"path": "core/imageloading/impl/src/main/java/soup/movie/core/imageloading/impl/CoilInitializer.kt",
"chars": 1136,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/kotlin/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "core/kotlin/build.gradle",
"chars": 177,
"preview": "plugins {\n id \"moop.android.library\"\n id \"moop.android.hilt\"\n}\n\nandroid {\n namespace \"soup.movie.common\"\n}\n\ndep"
},
{
"path": "core/kotlin/src/main/AndroidManifest.xml",
"chars": 13,
"preview": "<manifest />\n"
},
{
"path": "core/kotlin/src/main/java/soup/movie/common/Dispatchers.kt",
"chars": 1078,
"preview": "/*\n * Copyright 2022 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/kotlin/src/main/java/soup/movie/common/di/CoroutineScopesModule.kt",
"chars": 1276,
"preview": "/*\n * Copyright 2023 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/kotlin/src/main/java/soup/movie/common/di/DispatchersModule.kt",
"chars": 1618,
"preview": "/*\n * Copyright 2022 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/logger/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "core/logger/build.gradle",
"chars": 135,
"preview": "plugins {\n id \"moop.android.library\"\n}\n\nandroid {\n namespace \"soup.movie.log\"\n}\n\ndependencies {\n implementation"
},
{
"path": "core/logger/proguard-rules.pro",
"chars": 32,
"preview": "-dontwarn soup.movie.log.Logger\n"
},
{
"path": "core/logger/src/main/AndroidManifest.xml",
"chars": 121,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n</manifest"
},
{
"path": "core/logger/src/main/java/soup/movie/log/DebugTree.kt",
"chars": 858,
"preview": "/*\n * Copyright 2023 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/logger/src/main/java/soup/movie/log/Logger.kt",
"chars": 2873,
"preview": "/*\n * Copyright 2023 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/resources/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "core/resources/build.gradle",
"chars": 92,
"preview": "plugins {\n id \"moop.android.library\"\n}\n\nandroid {\n namespace \"soup.movie.resources\"\n}\n"
},
{
"path": "core/resources/src/main/AndroidManifest.xml",
"chars": 13,
"preview": "<manifest />\n"
},
{
"path": "core/resources/src/main/kotlin/soup/movie/resources/Resources.kt",
"chars": 743,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "core/resources/src/main/res/drawable/ic_notify_default.xml",
"chars": 1456,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:wi"
},
{
"path": "core/resources/src/main/res/values/strings.xml",
"chars": 2221,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n <string name=\"description_filter_applied\">%1$s filter applied</st"
},
{
"path": "core/resources/src/main/res/values-ko/strings.xml",
"chars": 2028,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n <string name=\"description_filter_applied\">%1$s 필터 적용됨</string>\n "
},
{
"path": "data/database/api/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "data/database/api/build.gradle",
"chars": 163,
"preview": "plugins {\n id \"kotlin\"\n}\n\ndependencies {\n implementation projects.data.model\n implementation libs.kotlin.stdlib"
},
{
"path": "data/database/api/src/main/AndroidManifest.xml",
"chars": 13,
"preview": "<manifest />\n"
},
{
"path": "data/database/api/src/main/java/soup/movie/data/database/LocalDataSource.kt",
"chars": 1714,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "data/database/impl/build.gradle",
"chars": 948,
"preview": "plugins {\n id \"moop.android.library\"\n id \"moop.android.hilt\"\n id \"com.google.devtools.ksp\"\n id \"org.jetbrain"
},
{
"path": "data/database/impl/proguard-rules.pro",
"chars": 815,
"preview": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguar"
},
{
"path": "data/database/impl/src/main/AndroidManifest.xml",
"chars": 13,
"preview": "<manifest />\n"
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/LocalDataSourceFactory.kt",
"chars": 1628,
"preview": "/*\n * Copyright 2022 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/LocalDataSourceImpl.kt",
"chars": 5595,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/MovieCacheDatabase.kt",
"chars": 1155,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/MovieDatabase.kt",
"chars": 1412,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/converter/CacheDatabaseTypeConverter.kt",
"chars": 1218,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/converter/FavoriteMovieTypeConverters.kt",
"chars": 1187,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/dao/FavoriteMovieDao.kt",
"chars": 1611,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/dao/MovieCacheDao.kt",
"chars": 1409,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/dao/OpenDateAlarmDao.kt",
"chars": 1745,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/di/DatabaseModule.kt",
"chars": 2834,
"preview": "/*\n * Copyright 2022 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/entity/FavoriteMovieEntity.kt",
"chars": 1626,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/entity/MovieEntity.kt",
"chars": 1083,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/entity/MovieListEntity.kt",
"chars": 1003,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/entity/OpenDateAlarmEntity.kt",
"chars": 989,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/mapper/EntityToModelMapper.kt",
"chars": 2409,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/database/impl/src/main/java/soup/movie/data/database/impl/mapper/ModelToEntityMapper.kt",
"chars": 2135,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/.gitignore",
"chars": 7,
"preview": "/build\n"
},
{
"path": "data/model/build.gradle",
"chars": 84,
"preview": "plugins {\n id \"kotlin\"\n}\n\ndependencies {\n implementation libs.kotlin.stdlib\n}\n"
},
{
"path": "data/model/src/main/AndroidManifest.xml",
"chars": 13,
"preview": "<manifest />\n"
},
{
"path": "data/model/src/main/java/soup/movie/model/ActorModel.kt",
"chars": 746,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/BoxOfficeModel.kt",
"chars": 786,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/CgvInfoModel.kt",
"chars": 706,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/CompanyModel.kt",
"chars": 768,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/ImdbInfoModel.kt",
"chars": 707,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/LotteInfoModel.kt",
"chars": 708,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/MegaboxInfoModel.kt",
"chars": 710,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/MetascoreInfoModel.kt",
"chars": 671,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/MovieDetailModel.kt",
"chars": 1285,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/MovieListModel.kt",
"chars": 706,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/MovieModel.kt",
"chars": 1079,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/OpenDateAlarmModel.kt",
"chars": 722,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/RottenTomatoInfoModel.kt",
"chars": 674,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/TheaterRatingsModel.kt",
"chars": 721,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/TrailerModel.kt",
"chars": 747,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/settings/AgeFilter.kt",
"chars": 1261,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/model/src/main/java/soup/movie/model/settings/TheaterFilter.kt",
"chars": 2023,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "data/network/api/build.gradle",
"chars": 449,
"preview": "plugins {\n id \"moop.android.library\"\n id \"org.jetbrains.kotlin.plugin.serialization\"\n}\n\nandroid {\n namespace \"s"
},
{
"path": "data/network/api/proguard-rules.pro",
"chars": 807,
"preview": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguar"
},
{
"path": "data/network/api/src/main/AndroidManifest.xml",
"chars": 13,
"preview": "<manifest />\n"
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/RemoteDataSource.kt",
"chars": 1083,
"preview": "/*\n * Copyright 2022 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/ActorResponse.kt",
"chars": 981,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/BoxOfficeResponse.kt",
"chars": 1057,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/CgvInfoResponse.kt",
"chars": 958,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/CompanyResponse.kt",
"chars": 1026,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/ImdbInfoResponse.kt",
"chars": 963,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/LotteInfoResponse.kt",
"chars": 968,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/MegaboxInfoResponse.kt",
"chars": 978,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/MetascoreInfoResponse.kt",
"chars": 911,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/MovieDetailResponse.kt",
"chars": 3334,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/MovieListResponse.kt",
"chars": 1058,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/MovieResponse.kt",
"chars": 1825,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/RottenTomatoInfoResponse.kt",
"chars": 926,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/TheaterRatingsResponse.kt",
"chars": 1130,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/api/src/main/java/soup/movie/data/network/response/TrailerResponse.kt",
"chars": 1126,
"preview": "/*\n * Copyright 2021 SOUP\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this "
},
{
"path": "data/network/impl/.gitignore",
"chars": 6,
"preview": "/build"
},
{
"path": "data/network/impl/build.gradle",
"chars": 607,
"preview": "plugins {\n id \"moop.android.library\"\n id \"moop.android.hilt\"\n id \"org.jetbrains.kotlin.plugin.serialization\"\n}\n"
},
{
"path": "data/network/impl/src/main/AndroidManifest.xml",
"chars": 13,
"preview": "<manifest />\n"
}
]
// ... and 178 more files (download for full content)
About this extraction
This page contains the full source code of the Moop-App/Moop-Android GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 378 files (7.1 MB), approximately 1.9M tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.