├── .buildkite ├── commands │ ├── assemble-release-apk.sh │ ├── checkout-release-branch.sh │ ├── diff-merged-manifest.sh │ ├── lint.sh │ ├── prototype-build-fad.sh │ ├── prototype-build.sh │ ├── release-build.sh │ ├── restore-cache.sh │ ├── run-instrumented-tests.sh │ ├── run-unit-tests.sh │ ├── save-cache.sh │ └── should-skip-job.sh ├── pipeline.yml ├── release-builds.yml ├── release-pipelines │ ├── code-freeze.yml │ ├── download-translations.yml │ ├── finalize-hotfix-release.yml │ ├── finalize-release.yml │ ├── new-beta-release.yml │ ├── new-hotfix-release.yml │ └── update-rollouts.yml ├── schedules │ ├── dependency-analysis.yml │ └── dependency-cache.yml └── shared-pipeline-vars ├── .bundle └── config ├── .configure ├── .configure-files ├── android.keystore.enc ├── firebase.secrets.json.enc ├── google-services.json.enc ├── google-upload-credentials.json.enc ├── secret.properties.enc └── sentry.properties.enc ├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── enhancement.yml ├── copilot-instructions.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── gradle-wrapper-validation.yml │ ├── high-prio-issue-notify-slack.yml │ ├── run-danger.yml │ └── submit-gradle-dependencies.yml ├── .gitignore ├── .gitleaks.toml ├── .gitleaksignore ├── .java-version ├── .rubocop.yml ├── .rubocop_todo.yml ├── .ruby-version ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Dangerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── SECURITY.md ├── TESTING-CHECKLIST.md ├── app ├── build.gradle.kts ├── lint-baseline.xml └── src │ ├── androidTest │ ├── AndroidManifest.xml │ └── java │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ ├── OnboardingFlowComposableTest.kt │ │ ├── TestActivity.kt │ │ ├── analytics │ │ ├── AnalyticsTrackerTest.kt │ │ └── FirebaseAnalyticsTrackerTest.kt │ │ ├── compose │ │ └── text │ │ │ └── ExtensionTest.kt │ │ ├── deeplink │ │ ├── AddBookmarkDeepLinkTest.kt │ │ ├── AppOpenDeepLinkTest.kt │ │ ├── ChangeBookmarkTitleDeepLinkTest.kt │ │ ├── CloudFilesDeepLinkTest.kt │ │ ├── CreateAccountDeepLinkTest.kt │ │ ├── DeepLinkFactoryTest.kt │ │ ├── DeleteookmarkDeepLinkTest.kt │ │ ├── DownloadsDeepLinkTest.kt │ │ ├── ImportDeepLinkTest.kt │ │ ├── NativeShareDeepLinkTest.kt │ │ ├── RecommendationsDeepLinkTest.kt │ │ ├── ReferralsDeepLinkTest.kt │ │ ├── ShowBookmarkDeepLinkTest.kt │ │ ├── ShowEpisodeDeepLinkTest.kt │ │ ├── ShowFiltersDeepLinkTest.kt │ │ ├── ShowPageDeepLinkTest.kt │ │ ├── ShowPodcastDeepLinkTest.kt │ │ ├── ShowUpNextTabDeepLinkTest.kt │ │ ├── SignInDeepLinkTest.kt │ │ ├── StaffPicksDeepLinkTest.kt │ │ ├── ThemesDeepLinkTest.kt │ │ ├── TrendingDeepLinkTest.kt │ │ └── UpsellDeepLinkTest.kt │ │ ├── localization │ │ └── helper │ │ │ ├── DurationUtilTest.kt │ │ │ ├── LocalisationTests.kt │ │ │ └── TimeHelperTests.kt │ │ ├── models │ │ ├── db │ │ │ ├── AppDatabaseTest.kt │ │ │ ├── AutoArchiveTest.kt │ │ │ ├── BookmarkDaoTest.kt │ │ │ ├── ChapterDaoSelectionTest.kt │ │ │ ├── ChapterDaoTest.kt │ │ │ ├── DataOpenHelper.kt │ │ │ ├── EpisodeDaoTest.kt │ │ │ ├── ExternalDataDaoTest.kt │ │ │ ├── FolderDaoTest.kt │ │ │ ├── PodcastDaoTest.kt │ │ │ ├── PodcastRatingsDaoTest.kt │ │ │ ├── SearchHistoryDaoTest.kt │ │ │ ├── SuggestedFoldersDaoTest.kt │ │ │ ├── UpNextHistoryDaoTest.kt │ │ │ ├── UpNextQueueTest.kt │ │ │ ├── UserEpisodeDaoTest.kt │ │ │ └── helper │ │ │ │ └── QueryHelperTest.kt │ │ └── entity │ │ │ └── PodcastTest.kt │ │ ├── preferences │ │ └── UserSettingTest.kt │ │ ├── profile │ │ └── accountmanager │ │ │ └── PocketCastsAccountAuthenticatorTest.kt │ │ ├── repositories │ │ ├── bookmark │ │ │ └── BookmarkManagerTest.kt │ │ ├── download │ │ │ ├── UpdateEpisodeDetailsTest.kt │ │ │ └── UpdateEpisodeTaskTest.kt │ │ ├── endofyear │ │ │ └── EndOfYearManagerTest.kt │ │ ├── jobs │ │ │ └── VersionMigrationsWorkerTest.kt │ │ ├── playback │ │ │ └── MediaSessionManagerTest.kt │ │ ├── playlist │ │ │ ├── PlaylistManagerBaseTest.kt │ │ │ ├── PlaylistManagerDsl.kt │ │ │ ├── PlaylistManagerManualTest.kt │ │ │ └── PlaylistManagerSmartTest.kt │ │ └── podcast │ │ │ └── SuggestedFoldersManagerTest.kt │ │ ├── servers │ │ ├── ShareServiceManagerImplTest.kt │ │ └── account │ │ │ └── SyncAccountTest.kt │ │ ├── settings │ │ ├── SettingsImplTest.kt │ │ ├── advanced │ │ │ └── AdvancedSettingsTest.kt │ │ └── stats │ │ │ └── StatsHelperTest.kt │ │ ├── sharing │ │ └── SharingClientTest.kt │ │ ├── ui │ │ └── PlaybackServiceTest.kt │ │ ├── utils │ │ ├── FakeFileGenerator.kt │ │ └── MutableClock.kt │ │ └── views │ │ ├── extensions │ │ └── SpannedKtTest.kt │ │ ├── helper │ │ └── ShowNotesHelperTest.kt │ │ ├── multiselect │ │ └── MultiSelectEpisodeActionTest.kt │ │ └── review │ │ └── InAppReviewHelperTest.kt │ ├── debug │ ├── google-services.json │ └── res │ │ ├── values │ │ └── titles.xml │ │ └── xml │ │ └── shortcuts.xml │ ├── debugProd │ ├── google-services.json │ └── res │ │ ├── values │ │ └── titles.xml │ │ └── xml │ │ └── shortcuts.xml │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── fonts │ │ │ └── humane_semibold.otf │ ├── java │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ ├── CastOptionsProvider.kt │ │ │ ├── PocketCastsApplication.kt │ │ │ ├── PocketCastsWearListenerService.kt │ │ │ ├── di │ │ │ └── AppModule.kt │ │ │ ├── ui │ │ │ ├── MainActivity.kt │ │ │ ├── MainActivityViewModel.kt │ │ │ └── ThemeSettingObserver.kt │ │ │ └── view │ │ │ ├── LockableBottomSheetBehavior.kt │ │ │ └── NoSwipeViewPager.kt │ └── res │ │ ├── anim │ │ ├── onboarding_disappear.xml │ │ └── onboarding_enter.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ ├── titles.xml │ │ └── wear.xml │ │ └── xml │ │ ├── automotive_app_desc.xml │ │ └── locales_config.xml │ ├── release │ └── AndroidManifest.xml │ └── test │ └── java │ └── au │ └── com │ └── shiftyjelly │ └── pocketcasts │ ├── analytics │ └── AppLifecycleAnalyticsTest.kt │ ├── models │ └── to │ │ ├── PlaybackEffectsDataTest.kt │ │ ├── PodcastFolderHelperTest.kt │ │ └── SignInStateTest.kt │ ├── podcasts │ └── view │ │ └── folders │ │ └── FolderEditViewModelTest.kt │ └── ui │ └── MainActivityViewModelTest.kt ├── automotive ├── build.gradle.kts ├── lint-baseline.xml └── src │ ├── androidTest │ └── java │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── AutoPlaybackServiceTest.kt │ ├── debug │ ├── google-services.json │ └── res │ │ └── values │ │ └── titles.xml │ ├── debugProd │ ├── google-services.json │ └── res │ │ └── values │ │ └── titles.xml │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ ├── AutoPlaybackService.kt │ │ ├── AutomotiveAboutFragment.kt │ │ ├── AutomotiveApplication.kt │ │ ├── AutomotiveLicensesFragment.kt │ │ ├── AutomotiveLinkFragment.kt │ │ ├── AutomotiveSettingsActivity.kt │ │ ├── AutomotiveSettingsFragment.kt │ │ ├── AutomotiveSettingsPreferenceFragment.kt │ │ ├── compose │ │ └── QrPainter.kt │ │ ├── di │ │ └── AutomotiveAppModule.kt │ │ └── extensions │ │ └── Fragment.kt │ └── res │ ├── layout │ ├── activity_automotive_settings.xml │ ├── fragment_automotive_settings.xml │ ├── layout_car_switch.xml │ └── layout_preference_car.xml │ ├── values │ ├── colors.xml │ ├── styles.xml │ ├── titles.xml │ └── values.xml │ └── xml │ ├── automotive_app_desc.xml │ └── preferences_auto.xml ├── config └── gradle │ └── gradle_build_scan.gradle ├── debug.keystore ├── dependencies.gradle.kts ├── developer.properties-example ├── docs ├── coding-style.md ├── module-diagram.png ├── pull-request-guidelines.md └── translations.md ├── fastlane ├── Fastfile └── env │ └── user.env-example ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lint-no-op.xml ├── lint.xml ├── metadata └── release_notes.txt ├── modules ├── features │ ├── account │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── au │ │ │ │ │ └── com │ │ │ │ │ └── shiftyjelly │ │ │ │ │ └── pocketcasts │ │ │ │ │ └── account │ │ │ │ │ ├── AccountActivity.kt │ │ │ │ │ ├── AccountFragment.kt │ │ │ │ │ ├── ChangeDoneFragment.kt │ │ │ │ │ ├── ChangeDonePage.kt │ │ │ │ │ ├── ChangeEmailFragment.kt │ │ │ │ │ ├── ChangeEmailFragmentPage.kt │ │ │ │ │ ├── ChangePasswordPage.kt │ │ │ │ │ ├── ChangePwdFragment.kt │ │ │ │ │ ├── CreateDoneFragment.kt │ │ │ │ │ ├── CreateEmailFragment.kt │ │ │ │ │ ├── ProfileCircleView.kt │ │ │ │ │ ├── PromoCodeFragment.kt │ │ │ │ │ ├── PromoCodeUpgradedFragment.kt │ │ │ │ │ ├── PromoCodeViewModel.kt │ │ │ │ │ ├── ResetPasswordFragment.kt │ │ │ │ │ ├── SignInFragment.kt │ │ │ │ │ ├── components │ │ │ │ │ ├── ProductAmountVerticalText.kt │ │ │ │ │ └── SubscriptionPriceLabel.kt │ │ │ │ │ ├── di │ │ │ │ │ ├── AuthModule.kt │ │ │ │ │ └── AuthPhoneModule.kt │ │ │ │ │ ├── onboarding │ │ │ │ │ ├── AccountBenefit.kt │ │ │ │ │ ├── AccountBenefitsDialog.kt │ │ │ │ │ ├── AccountBenefitsFragment.kt │ │ │ │ │ ├── AccountBenefitsPage.kt │ │ │ │ │ ├── OnboardingActivity.kt │ │ │ │ │ ├── OnboardingActivityContract.kt │ │ │ │ │ ├── OnboardingCreateAccountPage.kt │ │ │ │ │ ├── OnboardingFlowComposable.kt │ │ │ │ │ ├── OnboardingForgotPasswordPage.kt │ │ │ │ │ ├── OnboardingLoginOrSignUpPage.kt │ │ │ │ │ ├── OnboardingLoginPage.kt │ │ │ │ │ ├── OnboardingWelcomePage.kt │ │ │ │ │ ├── components │ │ │ │ │ │ ├── CarouselAnimations.kt │ │ │ │ │ │ ├── ContinueWithGoogleButton.kt │ │ │ │ │ │ ├── FeatureCarousel.kt │ │ │ │ │ │ ├── InterestCategoryPill.kt │ │ │ │ │ │ ├── SubscriptionPlanRow.kt │ │ │ │ │ │ ├── UpgradeFeatureItem.kt │ │ │ │ │ │ └── UpgradeTrialTimeline.kt │ │ │ │ │ ├── import │ │ │ │ │ │ ├── OnboardingImportFlow.kt │ │ │ │ │ │ ├── OnboardingImportFrom.kt │ │ │ │ │ │ ├── OnboardingImportOpmlUrl.kt │ │ │ │ │ │ └── OnboardingImportStartPage.kt │ │ │ │ │ ├── recommendations │ │ │ │ │ │ ├── OnboardingInterestsPage.kt │ │ │ │ │ │ ├── OnboardingInterestsViewModel.kt │ │ │ │ │ │ ├── OnboardingRecommendationsFlow.kt │ │ │ │ │ │ ├── OnboardingRecommendationsSearchPage.kt │ │ │ │ │ │ ├── OnboardingRecommendationsSearchViewModel.kt │ │ │ │ │ │ └── OnboardingRecommendationsStartPage.kt │ │ │ │ │ └── upgrade │ │ │ │ │ │ ├── NewOnboardingFlow.kt │ │ │ │ │ │ ├── OldOnboardingFlow.kt │ │ │ │ │ │ ├── OnboardingSubscriptionPlan.kt │ │ │ │ │ │ ├── OnboardingUpgradeBottomSheet.kt │ │ │ │ │ │ ├── OnboardingUpgradeFeaturesPage.kt │ │ │ │ │ │ ├── OnboardingUpgradeFlow.kt │ │ │ │ │ │ ├── OnboardingUpgradeHelper.kt │ │ │ │ │ │ ├── OnboardingUpgradeScreen.kt │ │ │ │ │ │ ├── ProfileUpgradeBanner.kt │ │ │ │ │ │ ├── ProfileUpgradeBannerState.kt │ │ │ │ │ │ ├── UpgradeFeatureItem.kt │ │ │ │ │ │ └── contextual │ │ │ │ │ │ ├── Bookmarks.kt │ │ │ │ │ │ ├── Folders.kt │ │ │ │ │ │ ├── PreselectChapters.kt │ │ │ │ │ │ └── Shuffle.kt │ │ │ │ │ ├── viewmodel │ │ │ │ │ ├── AccountFragmentViewModel.kt │ │ │ │ │ ├── AccountViewModel.kt │ │ │ │ │ ├── ChangeEmailViewModel.kt │ │ │ │ │ ├── ChangePwdViewModel.kt │ │ │ │ │ ├── CreateAccountViewModel.kt │ │ │ │ │ ├── DoneViewModel.kt │ │ │ │ │ ├── GoogleSignInButtonViewModel.kt │ │ │ │ │ ├── OnboardingAccountBenefitsViewModel.kt │ │ │ │ │ ├── OnboardingActivityViewModel.kt │ │ │ │ │ ├── OnboardingCreateAccountViewModel.kt │ │ │ │ │ ├── OnboardingForgotPasswordViewModel.kt │ │ │ │ │ ├── OnboardingImportViewModel.kt │ │ │ │ │ ├── OnboardingLogInViewModel.kt │ │ │ │ │ ├── OnboardingLoginOrSignUpViewModel.kt │ │ │ │ │ ├── OnboardingRecommendationsStartPageViewModel.kt │ │ │ │ │ ├── OnboardingUpgradeFeaturesViewModel.kt │ │ │ │ │ ├── OnboardingWelcomeViewModel.kt │ │ │ │ │ ├── ResetPasswordViewModel.kt │ │ │ │ │ └── SignInViewModel.kt │ │ │ │ │ └── watchsync │ │ │ │ │ ├── WatchSync.kt │ │ │ │ │ └── WatchSyncAuthData.kt │ │ │ └── res │ │ │ │ ├── color │ │ │ │ ├── create_button.xml │ │ │ │ └── text_input_stroke_color.xml │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── a24.webp │ │ │ │ ├── conan.webp │ │ │ │ ├── conversations.webp │ │ │ │ ├── radiolab.webp │ │ │ │ ├── sevenam.webp │ │ │ │ └── thedaily.webp │ │ │ │ ├── drawable │ │ │ │ ├── ic_create_new_account.xml │ │ │ │ ├── ic_created_free_account.xml │ │ │ │ ├── ic_created_plus_account.xml │ │ │ │ ├── ic_done.xml │ │ │ │ ├── ic_email_address_changed.xml │ │ │ │ ├── ic_free_account.xml │ │ │ │ ├── ic_newsletter.xml │ │ │ │ ├── ic_password_changed.xml │ │ │ │ ├── ic_payment_failed.xml │ │ │ │ ├── ic_payment_failed_overlay.xml │ │ │ │ ├── ic_plus_account.xml │ │ │ │ ├── ic_privacy_policy.xml │ │ │ │ ├── ic_promo_expired_overlay.xml │ │ │ │ ├── ic_promocode_expired.xml │ │ │ │ ├── ic_setup_account.xml │ │ │ │ ├── ic_subscription.xml │ │ │ │ ├── ic_subscription_cancelled.xml │ │ │ │ ├── ic_terms.xml │ │ │ │ ├── ic_terms_conditions.xml │ │ │ │ ├── panel_paynow.xml │ │ │ │ ├── upgrade_background_patron_glows.webp │ │ │ │ └── upgrade_background_plus_glows.webp │ │ │ │ ├── layout-car │ │ │ │ ├── account_activity.xml │ │ │ │ ├── fragment_account.xml │ │ │ │ ├── fragment_create_done.xml │ │ │ │ ├── fragment_create_email.xml │ │ │ │ ├── fragment_reset_password.xml │ │ │ │ └── fragment_sign_in.xml │ │ │ │ ├── layout-land-car │ │ │ │ ├── fragment_create_email.xml │ │ │ │ └── fragment_sign_in.xml │ │ │ │ ├── layout-land │ │ │ │ ├── car_header.xml │ │ │ │ ├── fragment_create_email.xml │ │ │ │ └── fragment_sign_in.xml │ │ │ │ ├── layout │ │ │ │ ├── account_activity.xml │ │ │ │ ├── car_header.xml │ │ │ │ ├── fragment_account.xml │ │ │ │ ├── fragment_create_done.xml │ │ │ │ ├── fragment_create_email.xml │ │ │ │ ├── fragment_promocode.xml │ │ │ │ ├── fragment_promocode_upgraded.xml │ │ │ │ ├── fragment_reset_password.xml │ │ │ │ └── fragment_sign_in.xml │ │ │ │ ├── navigation │ │ │ │ └── account_nav_graph.xml │ │ │ │ ├── values-land-car │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── account │ │ │ ├── onboarding │ │ │ ├── recommendations │ │ │ │ ├── OnboardingInterestsViewModelTest.kt │ │ │ │ └── OnboardingRecommendationsStartPageViewModelTest.kt │ │ │ └── upgrade │ │ │ │ └── ProfileUpgradeBannerStateTest.kt │ │ │ └── viewmodel │ │ │ └── OnboardingActivityViewModelTest.kt │ ├── ads │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── ads │ │ │ └── AdReportFragment.kt │ ├── appreview │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ ├── kotlin │ │ │ └── au │ │ │ │ └── com │ │ │ │ └── shiftyjelly │ │ │ │ └── pocketcasts │ │ │ │ └── appreview │ │ │ │ ├── AppReviewDialogFragment.kt │ │ │ │ ├── AppReviewPage.kt │ │ │ │ └── AppReviewViewModel.kt │ │ │ └── res │ │ │ └── raw │ │ │ ├── app_review_no_animation.json │ │ │ └── app_review_yes_animation.json │ ├── cartheme │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ ├── anim │ │ │ ├── car_alpha_picker_enter.xml │ │ │ ├── car_alpha_picker_exit.xml │ │ │ ├── car_dialog_enter.xml │ │ │ ├── car_dialog_exit.xml │ │ │ ├── fade_in_trans_left.xml │ │ │ ├── fade_in_trans_left_layout_anim.xml │ │ │ ├── fade_in_trans_right.xml │ │ │ └── fade_in_trans_right_layout_anim.xml │ │ │ ├── color-night │ │ │ ├── car_primary_text_light.xml │ │ │ └── car_secondary_text_light.xml │ │ │ ├── color │ │ │ ├── car_accent_dark.xml │ │ │ ├── car_accent_light.xml │ │ │ ├── car_action1_dark.xml │ │ │ ├── car_action1_light.xml │ │ │ ├── car_label1_dark.xml │ │ │ ├── car_label1_light.xml │ │ │ ├── car_primary_text_dark.xml │ │ │ ├── car_primary_text_light.xml │ │ │ ├── car_secondary_text_dark.xml │ │ │ ├── car_secondary_text_light.xml │ │ │ ├── car_switch.xml │ │ │ ├── car_tab_tint.xml │ │ │ ├── car_tint_dark.xml │ │ │ ├── car_tint_light.xml │ │ │ ├── car_title2_dark.xml │ │ │ ├── car_title2_light.xml │ │ │ ├── car_title_dark.xml │ │ │ └── car_title_light.xml │ │ │ ├── drawable │ │ │ ├── car_alpha_jump_button_background.xml │ │ │ ├── car_alpha_picker_button_background.xml │ │ │ ├── car_button_background.xml │ │ │ ├── car_button_ripple_background.xml │ │ │ ├── car_button_ripple_background_dark.xml │ │ │ ├── car_button_ripple_background_light.xml │ │ │ ├── car_card_background.xml │ │ │ ├── car_card_ripple_background.xml │ │ │ ├── car_card_ripple_background_dark.xml │ │ │ ├── car_card_ripple_background_light.xml │ │ │ ├── car_card_rounded_background.xml │ │ │ ├── car_card_rounded_bottom_background.xml │ │ │ ├── car_card_rounded_top_background.xml │ │ │ ├── car_checkbox.xml │ │ │ ├── car_drawer_button_ripple_background.xml │ │ │ ├── car_drawer_list_item_background.xml │ │ │ ├── car_list_divider.xml │ │ │ ├── car_list_divider_dark.xml │ │ │ ├── car_list_divider_light.xml │ │ │ ├── car_list_item_background.xml │ │ │ ├── car_preference_divider.xml │ │ │ ├── car_radio_button.xml │ │ │ ├── car_scrollbar_thumb.xml │ │ │ ├── car_seekbar_thumb.xml │ │ │ ├── car_seekbar_track.xml │ │ │ ├── car_spinner_dropdown_arrow.xml │ │ │ ├── car_switch_thumb.xml │ │ │ ├── car_unbounded_ripple_background.xml │ │ │ ├── ic_arrow_drop_down.xml │ │ │ ├── ic_down.xml │ │ │ ├── ic_list_view_disable.xml │ │ │ ├── ic_more_vert.xml │ │ │ ├── ic_nav_arrow_back.xml │ │ │ └── ic_up.xml │ │ │ ├── layout │ │ │ ├── car_preference_alert_dialog.xml │ │ │ ├── car_preference_alert_dialog_button_bar.xml │ │ │ ├── car_preference_alert_dialog_title.xml │ │ │ ├── car_preference_dialog_edittext.xml │ │ │ ├── car_toolbar.xml │ │ │ ├── preference_car_checkbox_widget.xml │ │ │ ├── preference_car_switch_compat_widget.xml │ │ │ ├── preference_car_switch_widget.xml │ │ │ ├── preference_category_material_car.xml │ │ │ ├── preference_dropdown_material_car.xml │ │ │ ├── preference_material_car.xml │ │ │ └── preference_widget_seekbar_material_car.xml │ │ │ ├── values-h1752dp │ │ │ └── dimens.xml │ │ │ ├── values-h610dp │ │ │ └── dimens.xml │ │ │ ├── values-night │ │ │ ├── colors.xml │ │ │ └── dimens.xml │ │ │ ├── values-v28 │ │ │ └── themes.xml │ │ │ ├── values-w1280dp │ │ │ ├── dimens.xml │ │ │ └── integers.xml │ │ │ ├── values-w1920dp │ │ │ ├── dimens.xml │ │ │ └── integers.xml │ │ │ ├── values-w690dp │ │ │ ├── dimens.xml │ │ │ └── integers.xml │ │ │ ├── values-w930dp │ │ │ ├── dimens.xml │ │ │ └── integers.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── integers.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ ├── discover │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── au │ │ │ │ │ └── com │ │ │ │ │ └── shiftyjelly │ │ │ │ │ └── pocketcasts │ │ │ │ │ └── discover │ │ │ │ │ ├── compose │ │ │ │ │ ├── PodcastRow.kt │ │ │ │ │ └── SmallListRow.kt │ │ │ │ │ ├── extensions │ │ │ │ │ └── ImageView.kt │ │ │ │ │ ├── util │ │ │ │ │ ├── AutoScrollHelper.kt │ │ │ │ │ ├── DiscoverDeepLinkManager.kt │ │ │ │ │ ├── DiscoverPodcastDiffCallback.kt │ │ │ │ │ └── ScrollingLinearLayoutManager.kt │ │ │ │ │ ├── view │ │ │ │ │ ├── CarouselItemViewHolder.kt │ │ │ │ │ ├── CarouselListRowAdapter.kt │ │ │ │ │ ├── CategoriesBottomSheet.kt │ │ │ │ │ ├── CategoriesBottomSheetAdapter.kt │ │ │ │ │ ├── CategoriesListRowAdapter.kt │ │ │ │ │ ├── CategoryPillAdapter.kt │ │ │ │ │ ├── CollectionListRowAdapter.kt │ │ │ │ │ ├── DescriptiveListAdapter.kt │ │ │ │ │ ├── DiscoverAdapter.kt │ │ │ │ │ ├── DiscoverFragment.kt │ │ │ │ │ ├── EpisodeRow.kt │ │ │ │ │ ├── GridListAdapter.kt │ │ │ │ │ ├── HorizontalPeekSnapHelper.kt │ │ │ │ │ ├── LargeListRowAdapter.kt │ │ │ │ │ ├── LoadingItem.kt │ │ │ │ │ ├── MostPopularPodcastsAdapter.kt │ │ │ │ │ ├── PlainListAdapter.kt │ │ │ │ │ ├── PodcastCollectionItem.kt │ │ │ │ │ ├── PodcastDescriptiveRow.kt │ │ │ │ │ ├── PodcastGridFragment.kt │ │ │ │ │ ├── PodcastGridListFragment.kt │ │ │ │ │ ├── PodcastGridRow.kt │ │ │ │ │ ├── PodcastListFragment.kt │ │ │ │ │ ├── PodcastRow.kt │ │ │ │ │ ├── RankedListAdapter.kt │ │ │ │ │ ├── RegionSelectFragment.kt │ │ │ │ │ └── RemainingPodcastsAdapter.kt │ │ │ │ │ ├── viewmodel │ │ │ │ │ ├── DiscoverViewModel.kt │ │ │ │ │ └── PodcastListViewModel.kt │ │ │ │ │ └── worker │ │ │ │ │ ├── CuratedPodcastsCrawler.kt │ │ │ │ │ └── CuratedPodcastsSyncWorker.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── background_large_item_subscribe.xml │ │ │ │ ├── category_clear_all_pill_background.xml │ │ │ │ ├── category_pill_background.xml │ │ │ │ ├── category_pill_selected_background.xml │ │ │ │ ├── discover_network_placeholder.xml │ │ │ │ ├── header_text_linear_gradient.xml │ │ │ │ ├── highlight_circle.xml │ │ │ │ ├── ic_arrow_close.xml │ │ │ │ ├── ic_arrow_down.xml │ │ │ │ ├── ic_arrow_up.xml │ │ │ │ ├── panel_weblink.xml │ │ │ │ ├── pause_episode.xml │ │ │ │ ├── play_episode.xml │ │ │ │ ├── primary_ui_3_8_round.xml │ │ │ │ ├── search_background.xml │ │ │ │ └── search_with_category_pills_background.xml │ │ │ │ ├── layout-h560dp │ │ │ │ ├── item_carousel.xml │ │ │ │ └── item_top_ranked.xml │ │ │ │ ├── layout │ │ │ │ ├── all_categories_pill.xml │ │ │ │ ├── category_pill.xml │ │ │ │ ├── collection_header.xml │ │ │ │ ├── fragment_categories_bottom_sheet.xml │ │ │ │ ├── fragment_discover.xml │ │ │ │ ├── fragment_region_select.xml │ │ │ │ ├── item_carousel.xml │ │ │ │ ├── item_category.xml │ │ │ │ ├── item_collection_list.xml │ │ │ │ ├── item_grid.xml │ │ │ │ ├── item_large_list.xml │ │ │ │ ├── item_most_popular_podcasts.xml │ │ │ │ ├── item_top_ranked.xml │ │ │ │ ├── podcast_collection_item.xml │ │ │ │ ├── podcast_grid_fragment.xml │ │ │ │ ├── podcast_list_fragment.xml │ │ │ │ ├── ranked_podcast_row.xml │ │ │ │ ├── row_carousel_list.xml │ │ │ │ ├── row_categories.xml │ │ │ │ ├── row_category_ad.xml │ │ │ │ ├── row_category_pills.xml │ │ │ │ ├── row_change_region.xml │ │ │ │ ├── row_collection_list.xml │ │ │ │ ├── row_collection_list_deprecated.xml │ │ │ │ ├── row_detailed_podcast.xml │ │ │ │ ├── row_episode.xml │ │ │ │ ├── row_error.xml │ │ │ │ ├── row_most_popular_podcasts.xml │ │ │ │ ├── row_podcast.xml │ │ │ │ ├── row_podcast_descriptive.xml │ │ │ │ ├── row_podcast_grid.xml │ │ │ │ ├── row_podcast_large_list.xml │ │ │ │ ├── row_podcast_large_list_with_podcast.xml │ │ │ │ ├── row_podcast_small_list.xml │ │ │ │ ├── row_promotion.xml │ │ │ │ ├── row_ranked_list_header.xml │ │ │ │ ├── row_region.xml │ │ │ │ ├── row_remaining_podcasts_by_category.xml │ │ │ │ ├── row_single_episode.xml │ │ │ │ └── row_single_podcast.xml │ │ │ │ ├── menu │ │ │ │ └── discover_share.xml │ │ │ │ ├── values-h560dp │ │ │ │ └── dimens.xml │ │ │ │ ├── values-sw360dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── discover │ │ │ ├── util │ │ │ └── DiscoverDeepLinkManagerTest.kt │ │ │ └── worker │ │ │ └── CuratedPodcastsCrawlerTest.kt │ ├── endofyear │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ └── lottie-images │ │ │ │ │ └── playback_year_vs_year_image.webp │ │ │ ├── java │ │ │ │ └── au │ │ │ │ │ └── com │ │ │ │ │ └── shiftyjelly │ │ │ │ │ └── pocketcasts │ │ │ │ │ └── endofyear │ │ │ │ │ ├── EndOfYearViewModel.kt │ │ │ │ │ ├── StoriesActivity.kt │ │ │ │ │ ├── StoryCaptureController.kt │ │ │ │ │ ├── StorySharingClient.kt │ │ │ │ │ ├── di │ │ │ │ │ └── EoyModule.kt │ │ │ │ │ └── ui │ │ │ │ │ ├── Common.kt │ │ │ │ │ ├── CompletionRateStory.kt │ │ │ │ │ ├── CoverStory.kt │ │ │ │ │ ├── CrashMessageDialog.kt │ │ │ │ │ ├── EndOfYearLaunchBottomSheet.kt │ │ │ │ │ ├── EndOfYearPromptCard.kt │ │ │ │ │ ├── EndingStory.kt │ │ │ │ │ ├── LoadingStory.kt │ │ │ │ │ ├── LongestEpisodeStory.kt │ │ │ │ │ ├── NumberOfShowsStory.kt │ │ │ │ │ ├── PlusInterstitialStory.kt │ │ │ │ │ ├── RatingsStory.kt │ │ │ │ │ ├── StoriesPage.kt │ │ │ │ │ ├── TopShowStory.kt │ │ │ │ │ ├── TopShowsStory.kt │ │ │ │ │ ├── TotalTimeStory.kt │ │ │ │ │ ├── YearVsYearStory.kt │ │ │ │ │ └── components │ │ │ │ │ ├── HeaderText.kt │ │ │ │ │ └── VideoSurface.kt │ │ │ └── res │ │ │ │ ├── raw │ │ │ │ ├── pillar_bars_i3.json │ │ │ │ ├── pillar_numbers_i3.json │ │ │ │ ├── playback_completion_rate_100p_lottie.json │ │ │ │ ├── playback_completion_rate_20p_lottie.json │ │ │ │ ├── playback_completion_rate_40p_lottie.json │ │ │ │ ├── playback_completion_rate_60p_lottie.json │ │ │ │ ├── playback_completion_rate_80p_lottie.json │ │ │ │ ├── playback_intro_lottie.json │ │ │ │ ├── playback_longest_episode_lottie.json │ │ │ │ ├── playback_number_of_shows_lottie.json │ │ │ │ ├── playback_plus_interstitial.mp4 │ │ │ │ ├── playback_plus_interstitial_background.mp4 │ │ │ │ ├── playback_ratings_pillar_lottie.json │ │ │ │ ├── playback_top_show_lottie.json │ │ │ │ ├── playback_top_shows_wave_1_lottie.json │ │ │ │ ├── playback_top_shows_wave_2_lottie.json │ │ │ │ ├── playback_total_listened_lottie.json │ │ │ │ ├── playback_year_vs_year_down_lottie.json │ │ │ │ ├── playback_year_vs_year_same_lottie.json │ │ │ │ ├── playback_year_vs_year_up_a_lot_lottie.json │ │ │ │ └── playback_year_vs_year_up_lottie.json │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ ├── endofyear │ │ │ └── EndOfYearViewModelTest.kt │ │ │ └── models │ │ │ └── to │ │ │ └── StoryTest.kt │ ├── engage │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ │ └── au │ │ │ │ └── com │ │ │ │ └── shiftyjelly │ │ │ │ └── pocketcasts │ │ │ │ └── engage │ │ │ │ ├── ClusterService.kt │ │ │ │ ├── EngageData.kt │ │ │ │ ├── EngageSdkAccountSync.kt │ │ │ │ ├── EngageSdkBridge.kt │ │ │ │ ├── EngageSdkBroadcastReceiver.kt │ │ │ │ ├── EngageSdkLifecycleObserver.kt │ │ │ │ └── EngageSdkWorkers.kt │ │ │ └── test │ │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── engage │ │ │ └── RecommendationsTest.kt │ ├── filters │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── au │ │ │ │ │ └── com │ │ │ │ │ └── shiftyjelly │ │ │ │ │ └── pocketcasts │ │ │ │ │ ├── PlayAllFragment.kt │ │ │ │ │ └── playlists │ │ │ │ │ ├── CreatePlaylistFragment.kt │ │ │ │ │ ├── CreatePlaylistPage.kt │ │ │ │ │ ├── CreatePlaylistViewModel.kt │ │ │ │ │ ├── DownloadLimitFragment.kt │ │ │ │ │ ├── DownloadLimitPage.kt │ │ │ │ │ ├── OnboardingFragment.kt │ │ │ │ │ ├── OnboardingPage.kt │ │ │ │ │ ├── OptionsFragment.kt │ │ │ │ │ ├── PlaylistFragment.kt │ │ │ │ │ ├── PlaylistViewModel.kt │ │ │ │ │ ├── PlaylistsFragment.kt │ │ │ │ │ ├── PlaylistsPage.kt │ │ │ │ │ ├── PlaylistsViewModel.kt │ │ │ │ │ ├── SettingsFragment.kt │ │ │ │ │ ├── SettingsPage.kt │ │ │ │ │ ├── component │ │ │ │ │ ├── EpisodeAvailableViewHolder.kt │ │ │ │ │ ├── EpisodeUnavailableViewHolder.kt │ │ │ │ │ ├── PlaylistEpisodeAdapter.kt │ │ │ │ │ ├── PlaylistEpisodesAdapterFactory.kt │ │ │ │ │ ├── PlaylistHeader.kt │ │ │ │ │ ├── PlaylistHeaderAdapter.kt │ │ │ │ │ ├── PlaylistNameInputField.kt │ │ │ │ │ ├── PlaylistOptionsColumn.kt │ │ │ │ │ ├── PlaylistPreviewRow.kt │ │ │ │ │ ├── PlaylistSortOptionsColumn.kt │ │ │ │ │ └── PlaylistToolbar.kt │ │ │ │ │ ├── di │ │ │ │ │ └── SharingModule.kt │ │ │ │ │ ├── manual │ │ │ │ │ ├── AddEpisodeSourcesColumn.kt │ │ │ │ │ ├── AddEpisodesColumn.kt │ │ │ │ │ ├── AddEpisodesFragment.kt │ │ │ │ │ ├── AddEpisodesPage.kt │ │ │ │ │ ├── AddEpisodesViewModel.kt │ │ │ │ │ ├── AddToPlaylistFragment.kt │ │ │ │ │ ├── AddToPlaylistPage.kt │ │ │ │ │ ├── AddToPlaylistViewModel.kt │ │ │ │ │ ├── EditPlaylistFragment.kt │ │ │ │ │ ├── EditPlaylistPage.kt │ │ │ │ │ ├── EditPlaylistViewModel.kt │ │ │ │ │ ├── UnavailableEpisodeFragment.kt │ │ │ │ │ └── UnavailableEpisodePage.kt │ │ │ │ │ └── smart │ │ │ │ │ ├── AppliedRules.kt │ │ │ │ │ ├── AppliedRulesPage.kt │ │ │ │ │ ├── DownloadStatusRulePage.kt │ │ │ │ │ ├── EditRulesFragment.kt │ │ │ │ │ ├── EditRulesViewModel.kt │ │ │ │ │ ├── EpisodeDurationRulePage.kt │ │ │ │ │ ├── EpisodeStatusRulePage.kt │ │ │ │ │ ├── ManageSmartRulesPage.kt │ │ │ │ │ ├── MediaTypeRulePage.kt │ │ │ │ │ ├── PodcastsRulePage.kt │ │ │ │ │ ├── ReleaseDateRulePage.kt │ │ │ │ │ ├── RuleCheckboxRow.kt │ │ │ │ │ ├── RulePage.kt │ │ │ │ │ ├── RuleRadioRow.kt │ │ │ │ │ ├── RuleType.kt │ │ │ │ │ ├── RulesBuilder.kt │ │ │ │ │ ├── RulesColumn.kt │ │ │ │ │ ├── SmartEpisodeRow.kt │ │ │ │ │ ├── SmartRulesEditor.kt │ │ │ │ │ └── StarredRulePage.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── ic_filters_add.xml │ │ │ │ ├── ic_nothing.xml │ │ │ │ └── ic_rename.xml │ │ │ │ └── layout │ │ │ │ ├── adapter_episode_unavailable.xml │ │ │ │ └── playlist_fragment.xml │ │ │ └── test │ │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── playlists │ │ │ ├── create │ │ │ ├── CreatePlaylistViewModelTest.kt │ │ │ ├── FakePlaylistManager.kt │ │ │ └── RulesBuilderTest.kt │ │ │ └── manual │ │ │ └── AddToPlaylistViewModelTest.kt │ ├── navigation │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── navigation │ │ │ ├── ActivityDelegate.kt │ │ │ ├── BottomNavigator.kt │ │ │ ├── FragmentTransactionHandler.kt │ │ │ ├── RxSubscriptionsExts.kt │ │ │ └── StackOfStacks.kt │ ├── player │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── au │ │ │ │ │ └── com │ │ │ │ │ └── shiftyjelly │ │ │ │ │ └── pocketcasts │ │ │ │ │ └── player │ │ │ │ │ ├── binding │ │ │ │ │ └── ViewExtensions.kt │ │ │ │ │ ├── helper │ │ │ │ │ └── BottomSheetAnimation.kt │ │ │ │ │ ├── view │ │ │ │ │ ├── ChapterProgressBar.kt │ │ │ │ │ ├── EffectsFragment.kt │ │ │ │ │ ├── LongPressOptionsFragment.kt │ │ │ │ │ ├── MiniPlayer.kt │ │ │ │ │ ├── NotesFragment.kt │ │ │ │ │ ├── PlayerBottomSheet.kt │ │ │ │ │ ├── PlayerClickListener.kt │ │ │ │ │ ├── PlayerContainerFragment.kt │ │ │ │ │ ├── PlayerHeaderFragment.kt │ │ │ │ │ ├── PlayerSeekBar.kt │ │ │ │ │ ├── ShelfBottomSheet.kt │ │ │ │ │ ├── ShelfFragment.kt │ │ │ │ │ ├── SleepFragment.kt │ │ │ │ │ ├── UpNextAdapter.kt │ │ │ │ │ ├── UpNextEpisodeViewHolder.kt │ │ │ │ │ ├── UpNextFragment.kt │ │ │ │ │ ├── UpNextNoContentBanner.kt │ │ │ │ │ ├── UpNextSortFragment.kt │ │ │ │ │ ├── UpNextTouchCallback.kt │ │ │ │ │ ├── bookmark │ │ │ │ │ │ ├── BookmarkActivity.kt │ │ │ │ │ │ ├── BookmarkActivityContract.kt │ │ │ │ │ │ ├── BookmarkArguments.kt │ │ │ │ │ │ ├── BookmarkFragment.kt │ │ │ │ │ │ ├── BookmarkPage.kt │ │ │ │ │ │ ├── BookmarkViewModel.kt │ │ │ │ │ │ ├── BookmarksContainerFragment.kt │ │ │ │ │ │ ├── BookmarksFragment.kt │ │ │ │ │ │ ├── BookmarksPage.kt │ │ │ │ │ │ ├── BookmarksSortByDialog.kt │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── NoMatchingBookmarksBanner.kt │ │ │ │ │ │ └── search │ │ │ │ │ │ │ └── BookmarkSearchHandler.kt │ │ │ │ │ ├── chapters │ │ │ │ │ │ ├── ChapterRow.kt │ │ │ │ │ │ ├── ChaptersFragment.kt │ │ │ │ │ │ ├── ChaptersHeader.kt │ │ │ │ │ │ ├── ChaptersPage.kt │ │ │ │ │ │ ├── ChaptersTheme.kt │ │ │ │ │ │ └── ChaptersViewModel.kt │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── ClearUpNextDialog.kt │ │ │ │ │ │ └── MiniPlayerDialog.kt │ │ │ │ │ ├── nowplaying │ │ │ │ │ │ ├── ArtworkImage.kt │ │ │ │ │ │ ├── ArtworkOrVideo.kt │ │ │ │ │ │ ├── ChapterLinkButton.kt │ │ │ │ │ │ ├── ChapterProgressCircle.kt │ │ │ │ │ │ ├── EpisodeTitles.kt │ │ │ │ │ │ ├── PlayerControls.kt │ │ │ │ │ │ ├── PlayerSeekBar.kt │ │ │ │ │ │ └── VideoBox.kt │ │ │ │ │ ├── shelf │ │ │ │ │ │ ├── MenuShelfItems.kt │ │ │ │ │ │ ├── PlayerShelf.kt │ │ │ │ │ │ ├── ShelfBottomSheetPage.kt │ │ │ │ │ │ ├── ShelfItemRow.kt │ │ │ │ │ │ ├── ShelfRearrangeActionsPage.kt │ │ │ │ │ │ └── ShelfTitleRow.kt │ │ │ │ │ └── video │ │ │ │ │ │ ├── VideoActivity.kt │ │ │ │ │ │ ├── VideoFragment.kt │ │ │ │ │ │ └── VideoView.kt │ │ │ │ │ └── viewmodel │ │ │ │ │ ├── BookmarksViewModel.kt │ │ │ │ │ ├── NotesViewModel.kt │ │ │ │ │ ├── PlayerViewModel.kt │ │ │ │ │ ├── ShelfSharedViewModel.kt │ │ │ │ │ ├── ShelfViewModel.kt │ │ │ │ │ ├── UpNextViewModel.kt │ │ │ │ │ └── VideoViewModel.kt │ │ │ └── res │ │ │ │ ├── color │ │ │ │ ├── trim_mode_background.xml │ │ │ │ └── trim_stroke_color.xml │ │ │ │ ├── drawable │ │ │ │ ├── background_miniplayer_gradient.xml │ │ │ │ ├── ic_archive_32.xml │ │ │ │ ├── ic_chapter_skipbackwards.xml │ │ │ │ ├── ic_chapter_skipforward.xml │ │ │ │ ├── ic_delete_32.xml │ │ │ │ ├── ic_download_32.xml │ │ │ │ ├── ic_duration.xml │ │ │ │ ├── ic_effects_off_32.xml │ │ │ │ ├── ic_effects_on.xml │ │ │ │ ├── ic_effects_on_32.xml │ │ │ │ ├── ic_fullscreen.xml │ │ │ │ ├── ic_link.xml │ │ │ │ ├── ic_link_back.xml │ │ │ │ ├── ic_markasplayed.xml │ │ │ │ ├── ic_more.xml │ │ │ │ ├── ic_notes.xml │ │ │ │ ├── ic_notes_notify.xml │ │ │ │ ├── ic_picture_in_picture.xml │ │ │ │ ├── ic_play_next.xml │ │ │ │ ├── ic_playupnext.xml │ │ │ │ ├── ic_schedule.xml │ │ │ │ ├── ic_share_android_32.xml │ │ │ │ ├── ic_sleep.xml │ │ │ │ ├── ic_speed.xml │ │ │ │ ├── ic_star_32.xml │ │ │ │ ├── ic_star_filled_32.xml │ │ │ │ ├── ic_tick.xml │ │ │ │ ├── ic_tick_circle_ol_32.xml │ │ │ │ ├── ic_upnext_movetobottom.xml │ │ │ │ ├── ic_upnext_movetotop.xml │ │ │ │ ├── ic_upnext_remove.xml │ │ │ │ ├── ic_volumeboost.xml │ │ │ │ ├── mini_player_play_background_40.xml │ │ │ │ ├── mini_player_progress_bar.xml │ │ │ │ ├── mini_player_skip_back.xml │ │ │ │ ├── mini_player_skip_forward.xml │ │ │ │ ├── mini_player_upnext.xml │ │ │ │ ├── mini_player_upnext_badge.xml │ │ │ │ ├── mini_player_upnext_badge_large.xml │ │ │ │ ├── player_gradient.xml │ │ │ │ ├── round_corners_2dp.xml │ │ │ │ └── round_corners_8dp.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_video.xml │ │ │ │ ├── adapter_up_next.xml │ │ │ │ ├── adapter_up_next_footer.xml │ │ │ │ ├── adapter_up_next_playing.xml │ │ │ │ ├── fragment_bookmarks_container.xml │ │ │ │ ├── fragment_effects.xml │ │ │ │ ├── fragment_long_press_options.xml │ │ │ │ ├── fragment_notes.xml │ │ │ │ ├── fragment_player.xml │ │ │ │ ├── fragment_player_container.xml │ │ │ │ ├── fragment_share.xml │ │ │ │ ├── fragment_sleep.xml │ │ │ │ ├── fragment_upnext.xml │ │ │ │ ├── fragment_video.xml │ │ │ │ ├── video_view.xml │ │ │ │ ├── view_mini_player.xml │ │ │ │ ├── view_playback_seek_bar.xml │ │ │ │ └── view_player_bottom_sheet.xml │ │ │ │ ├── menu │ │ │ │ ├── player.xml │ │ │ │ └── upnext.xml │ │ │ │ ├── raw │ │ │ │ ├── effects_button.json │ │ │ │ ├── mini_player_play_button_40.json │ │ │ │ ├── skip_button.json │ │ │ │ └── sleep_button.json │ │ │ │ ├── values-sw340dp │ │ │ │ └── dimens.xml │ │ │ │ ├── values-sw600dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── player_styles.xml │ │ │ │ └── theme.xml │ │ │ └── test │ │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── player │ │ │ ├── view │ │ │ └── bookmark │ │ │ │ └── search │ │ │ │ └── BookmarkSearchHandlerTest.kt │ │ │ └── viewmodel │ │ │ ├── BookmarksViewModelTest.kt │ │ │ ├── ChaptersViewModelTest.kt │ │ │ ├── PlayerViewModelTest.kt │ │ │ ├── ShelfSharedViewModelTest.kt │ │ │ ├── ShelfViewModelTest.kt │ │ │ └── UpNextViewModelTest.kt │ ├── podcasts │ │ ├── build.gradle.kts │ │ ├── lint.xml │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── au │ │ │ │ │ └── com │ │ │ │ │ └── shiftyjelly │ │ │ │ │ └── pocketcasts │ │ │ │ │ └── podcasts │ │ │ │ │ ├── di │ │ │ │ │ └── PodcastsModule.kt │ │ │ │ │ ├── helper │ │ │ │ │ ├── ViewExtensions.kt │ │ │ │ │ └── search │ │ │ │ │ │ ├── BookmarkSearchHandler.kt │ │ │ │ │ │ ├── EpisodeSearchHandler.kt │ │ │ │ │ │ └── SearchHandler.kt │ │ │ │ │ ├── view │ │ │ │ │ ├── ProfileEpisodeListFragment.kt │ │ │ │ │ ├── ProfileEpisodeListViewModel.kt │ │ │ │ │ ├── ProfileManageDownloadsCard.kt │ │ │ │ │ ├── ProflieEpisodeListSearchBar.kt │ │ │ │ │ ├── components │ │ │ │ │ │ ├── DividerSubTitle.kt │ │ │ │ │ │ ├── LargePageTitle.kt │ │ │ │ │ │ ├── PlaybackSpeedPreference.kt │ │ │ │ │ │ └── ratings │ │ │ │ │ │ │ ├── GiveRatingFragment.kt │ │ │ │ │ │ │ ├── GiveRatingLoadingScreen.kt │ │ │ │ │ │ │ ├── GiveRatingNotAllowedToRateScreen.kt │ │ │ │ │ │ │ ├── GiveRatingPage.kt │ │ │ │ │ │ │ ├── GiveRatingScreen.kt │ │ │ │ │ │ │ ├── GiveRatingsErrorScreen.kt │ │ │ │ │ │ │ ├── StarRatingView.kt │ │ │ │ │ │ │ ├── SwipeableStars.kt │ │ │ │ │ │ │ └── SwipeableStarsViewModel.kt │ │ │ │ │ ├── episode │ │ │ │ │ │ ├── DownloadButton.kt │ │ │ │ │ │ ├── DownloadButtonState.kt │ │ │ │ │ │ ├── EpisodeContainerFragment.kt │ │ │ │ │ │ ├── EpisodeContainerFragmentViewModel.kt │ │ │ │ │ │ ├── EpisodeFragment.kt │ │ │ │ │ │ ├── EpisodeFragmentViewModel.kt │ │ │ │ │ │ └── ToggleActionButton.kt │ │ │ │ │ ├── folders │ │ │ │ │ │ ├── FolderChooserFragment.kt │ │ │ │ │ │ ├── FolderChooserPage.kt │ │ │ │ │ │ ├── FolderCreateFragment.kt │ │ │ │ │ │ ├── FolderCreateSharedViewModel.kt │ │ │ │ │ │ ├── FolderEditColorPage.kt │ │ │ │ │ │ ├── FolderEditFragment.kt │ │ │ │ │ │ ├── FolderEditNamePage.kt │ │ │ │ │ │ ├── FolderEditPage.kt │ │ │ │ │ │ ├── FolderEditPodcastsFragment.kt │ │ │ │ │ │ ├── FolderEditPodcastsPage.kt │ │ │ │ │ │ ├── FolderEditViewModel.kt │ │ │ │ │ │ ├── PodcastFolderHelper.kt │ │ │ │ │ │ ├── SelectSortByDialog.kt │ │ │ │ │ │ ├── SuggestedFolderPodcastsPage.kt │ │ │ │ │ │ ├── SuggestedFoldersFragment.kt │ │ │ │ │ │ ├── SuggestedFoldersPage.kt │ │ │ │ │ │ ├── SuggestedFoldersPopupPolicy.kt │ │ │ │ │ │ └── SuggestedFoldersViewModel.kt │ │ │ │ │ ├── notifications │ │ │ │ │ │ ├── EnableNotificationsPromptFragment.kt │ │ │ │ │ │ └── EnableNotificationsPromptScreen.kt │ │ │ │ │ ├── podcast │ │ │ │ │ │ ├── ArchiveAfterInactiveFragment.kt │ │ │ │ │ │ ├── ArchiveAfterPlayingFragment.kt │ │ │ │ │ │ ├── ArchiveLimitFragment.kt │ │ │ │ │ │ ├── BaseEpisodeViewHolder.kt │ │ │ │ │ │ ├── EpisodeListAdapter.kt │ │ │ │ │ │ ├── EpisodeSearchView.kt │ │ │ │ │ │ ├── EpisodeViewHolder.kt │ │ │ │ │ │ ├── LargeListAdapter.kt │ │ │ │ │ │ ├── PodcastAdapter.kt │ │ │ │ │ │ ├── PodcastFolderOptionsDialog.kt │ │ │ │ │ │ ├── PodcastFragment.kt │ │ │ │ │ │ ├── PodcastHeader.kt │ │ │ │ │ │ ├── PodcastInfoView.kt │ │ │ │ │ │ ├── PodcastSettingsArchivePage.kt │ │ │ │ │ │ ├── PodcastSettingsEffectsPage.kt │ │ │ │ │ │ ├── PodcastSettingsFragment.kt │ │ │ │ │ │ ├── PodcastSettingsHomePage.kt │ │ │ │ │ │ ├── PodcastSettingsPage.kt │ │ │ │ │ │ ├── PodcastSettingsPlaylistsPage.kt │ │ │ │ │ │ ├── PodcastToolbar.kt │ │ │ │ │ │ ├── TrimModeFragment.kt │ │ │ │ │ │ ├── UpNextPositionFragment.kt │ │ │ │ │ │ ├── UserEpisodeViewHolder.kt │ │ │ │ │ │ └── adapter │ │ │ │ │ │ │ ├── BookmarkHeaderViewHolder.kt │ │ │ │ │ │ │ ├── BookmarkUpsellViewHolder.kt │ │ │ │ │ │ │ ├── BookmarkViewHolder.kt │ │ │ │ │ │ │ ├── DividerSubTitleViewHolder.kt │ │ │ │ │ │ │ ├── EmptyListViewHolder.kt │ │ │ │ │ │ │ ├── LoadingViewHolder.kt │ │ │ │ │ │ │ ├── PaddingViewHolder.kt │ │ │ │ │ │ │ ├── RecommendedPodcastViewHolder.kt │ │ │ │ │ │ │ └── TabsViewHolder.kt │ │ │ │ │ ├── podcasts │ │ │ │ │ │ ├── AdapterViewTypeIds.kt │ │ │ │ │ │ ├── BannerAdAdapter.kt │ │ │ │ │ │ ├── FolderAdapter.kt │ │ │ │ │ │ ├── FolderListRow.kt │ │ │ │ │ │ ├── FolderOptionsDialog.kt │ │ │ │ │ │ ├── FolderViewHolder.kt │ │ │ │ │ │ ├── PodcastsFragment.kt │ │ │ │ │ │ └── PodcastsOptionsDialog.kt │ │ │ │ │ └── share │ │ │ │ │ │ ├── ShareListCreateActivity.kt │ │ │ │ │ │ ├── ShareListCreateBuildingPage.kt │ │ │ │ │ │ ├── ShareListCreateFailedPage.kt │ │ │ │ │ │ ├── ShareListCreateFragment.kt │ │ │ │ │ │ ├── ShareListCreatePodcastsPage.kt │ │ │ │ │ │ ├── ShareListCreateTitlePage.kt │ │ │ │ │ │ ├── ShareListCreateViewModel.kt │ │ │ │ │ │ ├── ShareListIncomingAdapter.kt │ │ │ │ │ │ ├── ShareListIncomingFragment.kt │ │ │ │ │ │ └── ShareListIncomingViewModel.kt │ │ │ │ │ └── viewmodel │ │ │ │ │ ├── GiveRatingViewModel.kt │ │ │ │ │ ├── PodcastAndEpisodeDetailsCoordinator.kt │ │ │ │ │ ├── PodcastRatingsViewModel.kt │ │ │ │ │ ├── PodcastSettingsViewModel.kt │ │ │ │ │ ├── PodcastViewModel.kt │ │ │ │ │ ├── PodcastsViewModel.kt │ │ │ │ │ ├── notifications │ │ │ │ │ └── EnableNotificationsPromptViewModel.kt │ │ │ │ │ └── podcast │ │ │ │ │ └── RecommendationsHandler.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── background_episode_card_error_layout.xml │ │ │ │ ├── edit_text_background_round.xml │ │ │ │ ├── episode_card_play_background.xml │ │ │ │ ├── ic_archive_all.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_author.xml │ │ │ │ ├── ic_badge.xml │ │ │ │ ├── ic_donate_coin.xml │ │ │ │ ├── ic_done_white_24dp.xml │ │ │ │ ├── ic_effects_off.xml │ │ │ │ ├── ic_effects_on.xml │ │ │ │ ├── ic_eyeball.xml │ │ │ │ ├── ic_group.xml │ │ │ │ ├── ic_history.xml │ │ │ │ ├── ic_largegrid.xml │ │ │ │ ├── ic_link.xml │ │ │ │ ├── ic_list.xml │ │ │ │ ├── ic_nextepisode.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_pencil_edit.xml │ │ │ │ ├── ic_podcasts.xml │ │ │ │ ├── ic_schedule.xml │ │ │ │ ├── ic_settings_small.xml │ │ │ │ ├── ic_share_option.xml │ │ │ │ ├── ic_silence.xml │ │ │ │ ├── ic_skip_outro.xml │ │ │ │ ├── ic_skipintros.xml │ │ │ │ ├── ic_smallgrid.xml │ │ │ │ ├── ic_starred_row.xml │ │ │ │ ├── ic_video_row.xml │ │ │ │ ├── ic_volumeboost.xml │ │ │ │ ├── panel_border.xml │ │ │ │ ├── progress_bar.xml │ │ │ │ └── support_panel.xml │ │ │ │ ├── layout-land │ │ │ │ └── fragment_episode.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_blank_fragment.xml │ │ │ │ ├── adapter_divider_row.xml │ │ │ │ ├── adapter_episode.xml │ │ │ │ ├── adapter_episode_header.xml │ │ │ │ ├── adapter_episode_limit.xml │ │ │ │ ├── adapter_podcast_grid.xml │ │ │ │ ├── adapter_podcast_list.xml │ │ │ │ ├── adapter_user_episode.xml │ │ │ │ ├── download_button.xml │ │ │ │ ├── fragment_episode.xml │ │ │ │ ├── fragment_episode_container.xml │ │ │ │ ├── fragment_podcast.xml │ │ │ │ ├── fragment_podcasts.xml │ │ │ │ ├── fragment_profile_episode_list.xml │ │ │ │ ├── fragment_share_incoming.xml │ │ │ │ ├── podcasts_toggle_action_button.xml │ │ │ │ ├── preference_playback_speed.xml │ │ │ │ └── view_episode_search.xml │ │ │ │ ├── menu │ │ │ │ ├── menu_profile_list.xml │ │ │ │ ├── podcasts_menu.xml │ │ │ │ └── share_podcasts_menu.xml │ │ │ │ ├── values-h560dp │ │ │ │ └── dimens.xml │ │ │ │ ├── values-sw400dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ └── preference_trim_mode.xml │ │ │ └── test │ │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── podcasts │ │ │ ├── view │ │ │ ├── ProfileEpisodeListViewModelTest.kt │ │ │ └── folders │ │ │ │ └── SuggestedFoldersPopupPolicyTest.kt │ │ │ └── viewmodel │ │ │ ├── notifications │ │ │ └── EnableNotificationsPromptViewModelTest.kt │ │ │ └── podcast │ │ │ └── RecommendationsHandlerTest.kt │ ├── profile │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── debug │ │ │ └── res │ │ │ │ └── xml │ │ │ │ └── authenticator.xml │ │ │ ├── debugProd │ │ │ └── res │ │ │ │ └── xml │ │ │ │ └── authenticator.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── au │ │ │ │ │ └── com │ │ │ │ │ └── shiftyjelly │ │ │ │ │ └── pocketcasts │ │ │ │ │ └── profile │ │ │ │ │ ├── AccountDetailsFragment.kt │ │ │ │ │ ├── AccountDetailsPage.kt │ │ │ │ │ ├── AccountDetailsViewModel.kt │ │ │ │ │ ├── AccountHeader.kt │ │ │ │ │ ├── AccountSections.kt │ │ │ │ │ ├── ProfileFragment.kt │ │ │ │ │ ├── ProfileHeader.kt │ │ │ │ │ ├── ProfilePage.kt │ │ │ │ │ ├── ProfileSections.kt │ │ │ │ │ ├── ProfileStats.kt │ │ │ │ │ ├── ProfileUpgradeSection.kt │ │ │ │ │ ├── ProfileViewModel.kt │ │ │ │ │ ├── RefreshSection.kt │ │ │ │ │ ├── SubCancelledFragment.kt │ │ │ │ │ ├── TrialFinishedFragment.kt │ │ │ │ │ ├── TrialFinishedNotes.kt │ │ │ │ │ ├── TrialFinishedPage.kt │ │ │ │ │ ├── accountmanager │ │ │ │ │ ├── PocketCastsAccountAuthenticator.kt │ │ │ │ │ └── PocketCastsAuthenticatorService.kt │ │ │ │ │ ├── champion │ │ │ │ │ ├── PocketCastsChampionBottomSheetDialog.kt │ │ │ │ │ └── PocketCastsChampionDialogComponent.kt │ │ │ │ │ ├── cloud │ │ │ │ │ ├── AddFileActivity.kt │ │ │ │ │ ├── AddFileColourAdapter.kt │ │ │ │ │ ├── AddFileViewModel.kt │ │ │ │ │ ├── CloudBottomSheetViewModel.kt │ │ │ │ │ ├── CloudFileBottomSheetFragment.kt │ │ │ │ │ ├── CloudFilesFragment.kt │ │ │ │ │ ├── CloudFilesViewModel.kt │ │ │ │ │ ├── CloudSettingsFragment.kt │ │ │ │ │ └── CloudSettingsViewModel.kt │ │ │ │ │ ├── sonos │ │ │ │ │ └── SonosAppLinkActivity.kt │ │ │ │ │ └── winback │ │ │ │ │ ├── AvailablePlansPage.kt │ │ │ │ │ ├── CancelConfirmationPage.kt │ │ │ │ │ ├── CancelOfferPage.kt │ │ │ │ │ ├── OfferClaimedPage.kt │ │ │ │ │ ├── WinbackFragment.kt │ │ │ │ │ ├── WinbackOfferErrorPage.kt │ │ │ │ │ ├── WinbackOfferPage.kt │ │ │ │ │ └── WinbackViewModel.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── background_cancel_panel.xml │ │ │ │ ├── background_profile_header.xml │ │ │ │ ├── background_supporter_count.xml │ │ │ │ ├── default_profile_pic.xml │ │ │ │ ├── ic_chevron_right.xml │ │ │ │ ├── ic_cloud_strikethrough.xml │ │ │ │ ├── ic_heart_cycle.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_locked_small.xml │ │ │ │ ├── ic_newspaper.xml │ │ │ │ ├── ic_rename.xml │ │ │ │ ├── ic_sub_ellipse.xml │ │ │ │ ├── ic_tab_profile.xml │ │ │ │ ├── ic_upload_file.xml │ │ │ │ ├── ic_yield.xml │ │ │ │ ├── panel_border.xml │ │ │ │ ├── plus_profile_pic.xml │ │ │ │ └── tick.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_add_file.xml │ │ │ │ ├── activity_sonos_app_link.xml │ │ │ │ ├── adapter_add_file_colour.xml │ │ │ │ ├── adapter_add_file_image.xml │ │ │ │ ├── adapter_supporter_podcast.xml │ │ │ │ ├── bottom_sheet_cloud_file.xml │ │ │ │ ├── fragment_cancelled_sub.xml │ │ │ │ ├── fragment_change_email.xml │ │ │ │ ├── fragment_cloud_files.xml │ │ │ │ ├── fragment_cloud_settings.xml │ │ │ │ ├── fragment_create_done.xml │ │ │ │ └── fragment_create_email.xml │ │ │ │ ├── menu │ │ │ │ ├── menu_addfile.xml │ │ │ │ └── menu_cloudfiles.xml │ │ │ │ └── values │ │ │ │ ├── color.xml │ │ │ │ └── dimens.xml │ │ │ ├── prototype │ │ │ └── res │ │ │ │ └── xml │ │ │ │ └── authenticator.xml │ │ │ ├── release │ │ │ └── res │ │ │ │ └── xml │ │ │ │ └── authenticator.xml │ │ │ └── test │ │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── profile │ │ │ └── winback │ │ │ └── WinbackViewModelTest.kt │ ├── referrals │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ ├── kotlin │ │ │ │ └── au │ │ │ │ │ └── com │ │ │ │ │ └── shiftyjelly │ │ │ │ │ └── pocketcasts │ │ │ │ │ └── referrals │ │ │ │ │ ├── ReferralCardAnimatedGradientView.kt │ │ │ │ │ ├── ReferralGuestPassCardView.kt │ │ │ │ │ ├── ReferralPageDefaults.kt │ │ │ │ │ ├── ReferralSubscriptionPlan.kt │ │ │ │ │ ├── ReferralsClaimGuestPassBannerCard.kt │ │ │ │ │ ├── ReferralsClaimGuestPassPage.kt │ │ │ │ │ ├── ReferralsClaimGuestPassViewModel.kt │ │ │ │ │ ├── ReferralsGuestPassError.kt │ │ │ │ │ ├── ReferralsGuestPassFragment.kt │ │ │ │ │ ├── ReferralsIconWithTooltip.kt │ │ │ │ │ ├── ReferralsInvalidOfferPage.kt │ │ │ │ │ ├── ReferralsSendGuestPassPage.kt │ │ │ │ │ ├── ReferralsSendGuestPassViewModel.kt │ │ │ │ │ └── ReferralsViewModel.kt │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ └── ic_gift.xml │ │ │ └── test │ │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── referrals │ │ │ ├── ReferralSubscriptionPlanTest.kt │ │ │ ├── ReferralsClaimGuestPassViewModelTest.kt │ │ │ ├── ReferralsSendGuestPassViewModelTest.kt │ │ │ └── ReferralsViewModelTest.kt │ ├── reimagine │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ │ └── au │ │ │ │ └── com │ │ │ │ └── shiftyjelly │ │ │ │ └── pocketcasts │ │ │ │ └── reimagine │ │ │ │ ├── ShareDialogFragment.kt │ │ │ │ ├── ShareViewModel.kt │ │ │ │ ├── clip │ │ │ │ ├── ClipAnalytics.kt │ │ │ │ ├── ClipPageState.kt │ │ │ │ ├── ClipPlayer.kt │ │ │ │ ├── ClipShareType.kt │ │ │ │ ├── ClipSharingClient.kt │ │ │ │ ├── ShareClipFragment.kt │ │ │ │ ├── ShareClipListener.kt │ │ │ │ ├── ShareClipPage.kt │ │ │ │ ├── ShareClipPageColorPreview.kt │ │ │ │ ├── ShareClipViewModel.kt │ │ │ │ └── SharingState.kt │ │ │ │ ├── di │ │ │ │ └── SharingModule.kt │ │ │ │ ├── episode │ │ │ │ ├── ShareEpisodeFragment.kt │ │ │ │ ├── ShareEpisodeListener.kt │ │ │ │ ├── ShareEpisodePage.kt │ │ │ │ └── ShareEpisodeViewModel.kt │ │ │ │ ├── podcast │ │ │ │ ├── SharePodcastFragment.kt │ │ │ │ ├── SharePodcastListener.kt │ │ │ │ ├── SharePodcastPage.kt │ │ │ │ └── SharePodcastViewModel.kt │ │ │ │ ├── timestamp │ │ │ │ ├── ShareEpisodeTimestampFragment.kt │ │ │ │ ├── ShareEpisodeTimestampListener.kt │ │ │ │ ├── ShareEpisodeTimestampPage.kt │ │ │ │ └── ShareEpisodeTimestampViewModel.kt │ │ │ │ └── ui │ │ │ │ ├── BackgroundAssetController.kt │ │ │ │ ├── CardCoordinates.kt │ │ │ │ ├── CardData.kt │ │ │ │ ├── ClipSelector.kt │ │ │ │ ├── ClipSelectorState.kt │ │ │ │ ├── CloseButton.kt │ │ │ │ ├── EpisodeCard.kt │ │ │ │ ├── HorizontalCard.kt │ │ │ │ ├── Modifiers.kt │ │ │ │ ├── PlatformBar.kt │ │ │ │ ├── PlatfromItem.kt │ │ │ │ ├── PodcastCard.kt │ │ │ │ ├── ShareColors.kt │ │ │ │ ├── SharePage.kt │ │ │ │ ├── SharingThemedSnackbar.kt │ │ │ │ ├── SquareCard.kt │ │ │ │ └── VerticalCard.kt │ │ │ └── test │ │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── reimagine │ │ │ ├── FakeTracker.kt │ │ │ ├── clip │ │ │ ├── FakeClipPlayer.kt │ │ │ ├── FakeClipSharingClient.kt │ │ │ └── ShareClipViewModelTest.kt │ │ │ ├── episode │ │ │ └── ShareEpisodeViewModelTest.kt │ │ │ ├── podcast │ │ │ └── SharePodcastViewModelTest.kt │ │ │ └── timestamp │ │ │ └── ShareEpisodeTimestampViewModelTest.kt │ ├── search │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── au │ │ │ │ │ └── com │ │ │ │ │ └── shiftyjelly │ │ │ │ │ └── pocketcasts │ │ │ │ │ └── search │ │ │ │ │ ├── ImprovedSearchResultsPage.kt │ │ │ │ │ ├── SearchAutoCompleteResultsPage.kt │ │ │ │ │ ├── SearchEpisodeResultsPage.kt │ │ │ │ │ ├── SearchFragment.kt │ │ │ │ │ ├── SearchHandler.kt │ │ │ │ │ ├── SearchInlineResultsPage.kt │ │ │ │ │ ├── SearchPodcastResultsPage.kt │ │ │ │ │ ├── SearchResultsFragment.kt │ │ │ │ │ ├── SearchViewModel.kt │ │ │ │ │ ├── component │ │ │ │ │ ├── ImprovedSearchEpisodeResultRow.kt │ │ │ │ │ ├── ImprovedSearchFolderResultRow.kt │ │ │ │ │ ├── ImprovedSearchPodcastResultRow.kt │ │ │ │ │ ├── ImprovedSearchTermSuggestionRow.kt │ │ │ │ │ ├── SearchEpisodeRow.kt │ │ │ │ │ ├── SearchFolderItem.kt │ │ │ │ │ ├── SearchFolderRow.kt │ │ │ │ │ ├── SearchMessages.kt │ │ │ │ │ ├── SearchPodcastItem.kt │ │ │ │ │ └── SearchResultFilters.kt │ │ │ │ │ └── searchhistory │ │ │ │ │ ├── SearchHistoryClearAllConfirmationDialog.kt │ │ │ │ │ ├── SearchHistoryPage.kt │ │ │ │ │ └── SearchHistoryViewModel.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── background_search.xml │ │ │ │ └── search.xml │ │ │ │ ├── layout │ │ │ │ └── fragment_search.xml │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── search │ │ │ ├── SearchViewModelTest.kt │ │ │ └── searchhistory │ │ │ └── SearchHistoryViewModelTest.kt │ ├── settings │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── au │ │ │ │ │ └── com │ │ │ │ │ └── shiftyjelly │ │ │ │ │ └── pocketcasts │ │ │ │ │ └── settings │ │ │ │ │ ├── AdvancedSettingsFragment.kt │ │ │ │ │ ├── AdvancedSettingsPage.kt │ │ │ │ │ ├── AppearanceIconSettingsAdapter.kt │ │ │ │ │ ├── AppearanceSettingsFragment.kt │ │ │ │ │ ├── AppearanceThemeSettingsAdapter.kt │ │ │ │ │ ├── AutoAddSettingsFragment.kt │ │ │ │ │ ├── AutoArchiveFragment.kt │ │ │ │ │ ├── AutoArchivePage.kt │ │ │ │ │ ├── AutoDownloadLimitFragment.kt │ │ │ │ │ ├── AutoDownloadSettingsFragment.kt │ │ │ │ │ ├── AutoDownloadSettingsHomePage.kt │ │ │ │ │ ├── AutoDownloadSettingsPage.kt │ │ │ │ │ ├── AutoDownloadSettingsPlaylistsPage.kt │ │ │ │ │ ├── AutoDownloadSettingsPodcastsPage.kt │ │ │ │ │ ├── BetaFeaturesFragment.kt │ │ │ │ │ ├── EpisodeArtworkConfigurationFragment.kt │ │ │ │ │ ├── ExportSettingsFragment.kt │ │ │ │ │ ├── HeadphoneControlsSettingsFragment.kt │ │ │ │ │ ├── HeadphoneControlsSettingsPageViewModel.kt │ │ │ │ │ ├── HelpFragment.kt │ │ │ │ │ ├── HelpPage.kt │ │ │ │ │ ├── LicensesFragment.kt │ │ │ │ │ ├── LogsFragment.kt │ │ │ │ │ ├── LowStorageDialogPresenter.kt │ │ │ │ │ ├── ManualCleanupConfirmationDialog.kt │ │ │ │ │ ├── ManualCleanupFragment.kt │ │ │ │ │ ├── ManualCleanupPage.kt │ │ │ │ │ ├── PlaybackSettingsFragment.kt │ │ │ │ │ ├── SettingsFragment.kt │ │ │ │ │ ├── SettingsFragmentPage.kt │ │ │ │ │ ├── StorageSettingsFragment.kt │ │ │ │ │ ├── StorageSettingsPage.kt │ │ │ │ │ ├── about │ │ │ │ │ └── AboutFragment.kt │ │ │ │ │ ├── components │ │ │ │ │ └── RowTextButton.kt │ │ │ │ │ ├── developer │ │ │ │ │ ├── DeveloperFragment.kt │ │ │ │ │ ├── DeveloperPage.kt │ │ │ │ │ └── DeveloperViewModel.kt │ │ │ │ │ ├── history │ │ │ │ │ ├── HistoryFragment.kt │ │ │ │ │ ├── HistoryPage.kt │ │ │ │ │ └── upnext │ │ │ │ │ │ ├── UpNextHistoryDetailsPage.kt │ │ │ │ │ │ ├── UpNextHistoryDetailsViewModel.kt │ │ │ │ │ │ ├── UpNextHistoryPage.kt │ │ │ │ │ │ └── UpNextHistoryViewModel.kt │ │ │ │ │ ├── notification │ │ │ │ │ ├── MediaActionsFragment.kt │ │ │ │ │ ├── MediaActionsPage.kt │ │ │ │ │ └── MediaActionsViewModel.kt │ │ │ │ │ ├── notifications │ │ │ │ │ ├── NotificationsSettingsFragment.kt │ │ │ │ │ ├── NotificationsSettingsScreen.kt │ │ │ │ │ ├── NotificationsSettingsViewModel.kt │ │ │ │ │ ├── components │ │ │ │ │ │ └── NotificationPreferenceCategory.kt │ │ │ │ │ ├── data │ │ │ │ │ │ ├── NotificationFeaturesProvider.kt │ │ │ │ │ │ ├── NotificationsPreferenceRepository.kt │ │ │ │ │ │ └── NotificationsPreferencesRepositoryImpl.kt │ │ │ │ │ ├── di │ │ │ │ │ │ └── NotificationSettingsModule.kt │ │ │ │ │ └── model │ │ │ │ │ │ ├── NotificationPreferenceCategory.kt │ │ │ │ │ │ └── NotificationPreferenceType.kt │ │ │ │ │ ├── notificationstesting │ │ │ │ │ ├── NotificationsTestingFragment.kt │ │ │ │ │ ├── NotificationsTestingPage.kt │ │ │ │ │ └── NotificationsTestingViewModel.kt │ │ │ │ │ ├── onboarding │ │ │ │ │ ├── OnboardingExitInfo.kt │ │ │ │ │ ├── OnboardingFlow.kt │ │ │ │ │ ├── OnboardingLauncher.kt │ │ │ │ │ └── OnboardingUpgradeSource.kt │ │ │ │ │ ├── privacy │ │ │ │ │ ├── PrivacyFragment.kt │ │ │ │ │ ├── PrivacyViewModel.kt │ │ │ │ │ └── UserAnalyticsSettings.kt │ │ │ │ │ ├── stats │ │ │ │ │ ├── StatsFragment.kt │ │ │ │ │ └── StatsViewModel.kt │ │ │ │ │ ├── status │ │ │ │ │ ├── ServiceStatus.kt │ │ │ │ │ ├── ServiceStatusChecker.kt │ │ │ │ │ ├── StatusFragment.kt │ │ │ │ │ └── StatusViewModel.kt │ │ │ │ │ ├── util │ │ │ │ │ ├── FunnyTimeConverter.kt │ │ │ │ │ └── TextResource.kt │ │ │ │ │ ├── viewmodel │ │ │ │ │ ├── AdvancedSettingsViewModel.kt │ │ │ │ │ ├── AutoAddSettingsViewModel.kt │ │ │ │ │ ├── AutoArchiveFragmentViewModel.kt │ │ │ │ │ ├── AutoDownloadSettingsViewModel.kt │ │ │ │ │ ├── BetaFeaturesViewModel.kt │ │ │ │ │ ├── ExportSettingsViewModel.kt │ │ │ │ │ ├── HelpViewModel.kt │ │ │ │ │ ├── LogsViewModel.kt │ │ │ │ │ ├── ManualCleanupViewModel.kt │ │ │ │ │ ├── SettingsAppearanceViewModel.kt │ │ │ │ │ └── StorageSettingsViewModel.kt │ │ │ │ │ └── whatsnew │ │ │ │ │ ├── ShuffleHeader.kt │ │ │ │ │ ├── WhatsNewFragment.kt │ │ │ │ │ ├── WhatsNewPage.kt │ │ │ │ │ └── WhatsNewViewModel.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── background_about_panel.xml │ │ │ │ ├── background_gradient01.xml │ │ │ │ ├── background_plus_gradient_rounded.xml │ │ │ │ ├── background_selectable_panel.xml │ │ │ │ ├── ic_about_star.xml │ │ │ │ ├── ic_baseline_warning_amber_24.xml │ │ │ │ ├── ic_circle_tick.xml │ │ │ │ ├── ic_developer_mode.xml │ │ │ │ ├── ic_hectangle.xml │ │ │ │ ├── ic_locked_patron.xml │ │ │ │ ├── ic_locked_plus.xml │ │ │ │ ├── ic_plus_bubble.xml │ │ │ │ ├── ic_plus_subtract.xml │ │ │ │ ├── ic_plus_white.xml │ │ │ │ ├── ic_refresh.xml │ │ │ │ ├── ic_skip_both.xml │ │ │ │ ├── ic_skipintros.xml │ │ │ │ ├── ic_skipping.xml │ │ │ │ ├── ic_speed.xml │ │ │ │ ├── ic_themes_icons.xml │ │ │ │ ├── ic_trim.xml │ │ │ │ ├── ic_twitter.xml │ │ │ │ ├── ic_whatsnew_auto_up_next.xml │ │ │ │ ├── pocketcasts_logo.xml │ │ │ │ ├── row_expand_arrow.xml │ │ │ │ ├── settings_about.xml │ │ │ │ ├── settings_advanced.xml │ │ │ │ ├── settings_appearance.xml │ │ │ │ ├── settings_auto_archive.xml │ │ │ │ ├── settings_auto_download.xml │ │ │ │ ├── settings_import_export.xml │ │ │ │ ├── settings_notifications.xml │ │ │ │ ├── settings_playback.xml │ │ │ │ ├── settings_signout.xml │ │ │ │ ├── settings_storage.xml │ │ │ │ ├── whatsnew_753_darkmode.xml │ │ │ │ ├── whatsnew_bullet.xml │ │ │ │ ├── whatsnew_duration.xml │ │ │ │ ├── whatsnew_files.xml │ │ │ │ ├── whatsnew_filtercreation.xml │ │ │ │ ├── whatsnew_free.xml │ │ │ │ ├── whatsnew_icons.xml │ │ │ │ ├── whatsnew_intelligentplayback.xml │ │ │ │ ├── whatsnew_multiselect.xml │ │ │ │ ├── whatsnew_nowplaying.xml │ │ │ │ ├── whatsnew_privacy.xml │ │ │ │ ├── whatsnew_showarchive.xml │ │ │ │ └── whatsnew_upnext.xml │ │ │ │ ├── layout │ │ │ │ ├── adapter_about_highlights.xml │ │ │ │ ├── adapter_about_release.xml │ │ │ │ ├── adapter_about_title.xml │ │ │ │ ├── adapter_appearance_appicon_item.xml │ │ │ │ ├── adapter_appearance_theme_item.xml │ │ │ │ ├── adapter_auto_add_podcast.xml │ │ │ │ ├── adapter_error.xml │ │ │ │ ├── adapter_footer.xml │ │ │ │ ├── adapter_header.xml │ │ │ │ ├── adapter_option_row.xml │ │ │ │ ├── adapter_plain_text_row.xml │ │ │ │ ├── adapter_plus_divider.xml │ │ │ │ ├── adapter_plus_feature_row.xml │ │ │ │ ├── adapter_plus_header.xml │ │ │ │ ├── adapter_plus_link_block.xml │ │ │ │ ├── adapter_plus_text_block.xml │ │ │ │ ├── adapter_plus_upgrade_button.xml │ │ │ │ ├── adapter_whatsnew_body_item.xml │ │ │ │ ├── adapter_whatsnew_bullet_item.xml │ │ │ │ ├── adapter_whatsnew_link_item.xml │ │ │ │ ├── adapter_whatsnew_picture_item.xml │ │ │ │ ├── adapter_whatsnew_title_item.xml │ │ │ │ ├── fragment_auto_add_settings.xml │ │ │ │ ├── fragment_notification_settings.xml │ │ │ │ ├── fragment_settings.xml │ │ │ │ ├── fragment_settings_appearance.xml │ │ │ │ └── fragment_whatsnew_page.xml │ │ │ │ ├── menu │ │ │ │ └── menu_about.xml │ │ │ │ ├── values │ │ │ │ └── preferences_default_row_action.xml │ │ │ │ └── xml │ │ │ │ └── preferences_export.xml │ │ │ └── test │ │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── settings │ │ │ ├── history │ │ │ └── upnext │ │ │ │ ├── UpNextHistoryDetailsViewModelTest.kt │ │ │ │ └── UpNextHistoryViewModelTest.kt │ │ │ ├── settings │ │ │ ├── NotificationsPreferencesRepositoryImplTest.kt │ │ │ └── NotificationsSettingsViewModelTest.kt │ │ │ ├── stats │ │ │ └── StatsViewModelTest.kt │ │ │ └── viewmodel │ │ │ ├── AdvancedSettingsViewModelTest.kt │ │ │ ├── ExportSettingsViewModelTest.kt │ │ │ ├── ManualCleanupViewModelTest.kt │ │ │ ├── SettingsAppearanceViewModelTest.kt │ │ │ └── StorageSettingsViewModelTest.kt │ ├── shared │ │ ├── README.md │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── au │ │ │ │ │ └── com │ │ │ │ │ └── shiftyjelly │ │ │ │ │ └── pocketcasts │ │ │ │ │ └── shared │ │ │ │ │ ├── AppLifecycleObserver.kt │ │ │ │ │ ├── DownloadStatisticsReporter.kt │ │ │ │ │ ├── NetworkConnectionStatusProvider.kt │ │ │ │ │ ├── NetworkConnectionWatcherImpl.kt │ │ │ │ │ ├── WatchPhoneCommunication.kt │ │ │ │ │ └── di │ │ │ │ │ └── SharedModule.kt │ │ │ └── res │ │ │ │ ├── raw │ │ │ │ ├── isrg_root_x1.pem │ │ │ │ ├── isrg_root_x2.pem │ │ │ │ └── lets_encrypt_r10.pem │ │ │ │ └── xml │ │ │ │ └── network_security_config.xml │ │ │ └── test │ │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── shared │ │ │ ├── AppLifecycleObserverTest.kt │ │ │ └── DownloadStatisticsReporterTest.kt │ ├── taskerplugin │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── au │ │ │ │ └── com │ │ │ │ └── shiftyjelly │ │ │ │ └── pocketcasts │ │ │ │ └── taskerplugin │ │ │ │ ├── addtoupnext │ │ │ │ ├── ActionHelperAddToUpNext.kt │ │ │ │ ├── ActionRunnerAddToUpNext.kt │ │ │ │ ├── InputAddToUpNext.kt │ │ │ │ └── config │ │ │ │ │ ├── ActivityConfigAddToUpNext.kt │ │ │ │ │ └── ViewModelConfigAddToUpNext.kt │ │ │ │ ├── base │ │ │ │ ├── ActivityConfigBase.kt │ │ │ │ ├── ComposableBase.kt │ │ │ │ ├── Extensions.kt │ │ │ │ ├── OutputQueryEpisodes.kt │ │ │ │ ├── ViewModelBase.kt │ │ │ │ └── hilt │ │ │ │ │ └── HiltEntryPoints.kt │ │ │ │ ├── controlplayback │ │ │ │ ├── ActionHelperControlPlayback.kt │ │ │ │ ├── ActionRunnerControlPlayback.kt │ │ │ │ ├── InputControlPlayback.kt │ │ │ │ └── config │ │ │ │ │ ├── ActivityConfigControlPlayback.kt │ │ │ │ │ └── ViewModelConfigControlPlayback.kt │ │ │ │ ├── playplaylist │ │ │ │ ├── ActionHelperPlayPlaylist.kt │ │ │ │ ├── ActionRunnerPlayPlaylist.kt │ │ │ │ ├── InputPlayPlaylist.kt │ │ │ │ └── config │ │ │ │ │ ├── ActivityConfigPlayPlaylist.kt │ │ │ │ │ └── ViewModelConfigPlayPlaylist.kt │ │ │ │ ├── queryfilterepisodes │ │ │ │ ├── ActionHelperQueryFilterEpisodes.kt │ │ │ │ ├── ActionRunnerQueryFilterEpisodes.kt │ │ │ │ ├── InputQueryFilterEpisodes.kt │ │ │ │ └── config │ │ │ │ │ ├── ActivityConfigQueryFilterEpisodes.kt │ │ │ │ │ └── ViewModelConfigQueryFilterEpisodes.kt │ │ │ │ ├── queryfilters │ │ │ │ ├── ActionHelperQueryFilters.kt │ │ │ │ ├── ActionRunnerQueryFilters.kt │ │ │ │ ├── IOQueryFilters.kt │ │ │ │ └── config │ │ │ │ │ ├── ActivityConfigQueryFilters.kt │ │ │ │ │ └── ViewModelConfigQueryFilters.kt │ │ │ │ ├── querypodcastepisodes │ │ │ │ ├── ActionHelperQueryPodcastEpisodes.kt │ │ │ │ ├── ActionRunnerQueryPodcastEpisodes.kt │ │ │ │ ├── InputQueryPodcastEpisodes.kt │ │ │ │ └── config │ │ │ │ │ ├── ActivityConfigQueryPodcastEpisodes.kt │ │ │ │ │ └── ViewModelConfigQueryPodcastEpisodes.kt │ │ │ │ ├── querypodcasts │ │ │ │ ├── ActionHelperQueryPodcasts.kt │ │ │ │ ├── ActionRunnerQueryPodcasts.kt │ │ │ │ ├── IOQueryPodcasts.kt │ │ │ │ └── config │ │ │ │ │ ├── ActivityConfigQueryPodcasts.kt │ │ │ │ │ └── ViewModelConfigQueryPodcasts.kt │ │ │ │ └── queryupnext │ │ │ │ ├── ActionHelperQueryUpNext.kt │ │ │ │ ├── ActionRunnerQueryUpNext.kt │ │ │ │ ├── InputQueryUpNext.kt │ │ │ │ └── config │ │ │ │ ├── ActivityConfigQueryUpNext.kt │ │ │ │ └── ViewModelConfigQueryUpNext.kt │ │ │ └── res │ │ │ └── drawable │ │ │ ├── content_cut.xml │ │ │ ├── label_outline.xml │ │ │ └── speedometer.xml │ ├── transcripts │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── main │ │ │ └── kotlin │ │ │ │ └── au │ │ │ │ └── com │ │ │ │ └── shiftyjelly │ │ │ │ └── pocketcasts │ │ │ │ └── transcripts │ │ │ │ ├── TranscriptFragment.kt │ │ │ │ ├── TranscriptSharingClient.kt │ │ │ │ ├── TranscriptViewModel.kt │ │ │ │ ├── di │ │ │ │ └── TranscriptsModule.kt │ │ │ │ └── ui │ │ │ │ ├── Toolbar.kt │ │ │ │ ├── TranscriptExcerptBanner.kt │ │ │ │ ├── TranscriptFailureContent.kt │ │ │ │ ├── TranscriptLines.kt │ │ │ │ ├── TranscriptPage.kt │ │ │ │ ├── TranscriptShareButton.kt │ │ │ │ ├── TranscriptTheme.kt │ │ │ │ ├── TranscriptWebView.kt │ │ │ │ └── TranscriptsPaywall.kt │ │ │ └── test │ │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── transcripts │ │ │ └── TranscriptViewModelTest.kt │ └── widgets │ │ ├── build.gradle.kts │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ ├── core │ │ │ └── ui │ │ │ │ └── widget │ │ │ │ └── PodcastWidget.kt │ │ │ └── widget │ │ │ ├── ClassicPlayerWidget.kt │ │ │ ├── LargePlayerWidget.kt │ │ │ ├── LargePlayerWidgetReceiver.kt │ │ │ ├── MediumPlayerWidget.kt │ │ │ ├── MediumPlayerWidgetReceiver.kt │ │ │ ├── PlayerWidgetManager.kt │ │ │ ├── PlayerWidgetReceiver.kt │ │ │ ├── SmallPlayerWidget.kt │ │ │ ├── SmallPlayerWidgetReceiver.kt │ │ │ ├── action │ │ │ ├── Actions.kt │ │ │ ├── OpenPocketCastsAction.kt │ │ │ ├── PausePlaybackAction.kt │ │ │ ├── PlayEpisodeAction.kt │ │ │ ├── ResumePlaybackAction.kt │ │ │ ├── SkipBackAction.kt │ │ │ └── SkipForwardAction.kt │ │ │ ├── data │ │ │ ├── ClassicPlayerWidgetState.kt │ │ │ ├── CompositionLocals.kt │ │ │ ├── LargePlayerWidgetState.kt │ │ │ ├── MediumPlayerWidgetState.kt │ │ │ ├── PlayerWidgetEpisode.kt │ │ │ └── SmallPlayerWidgetState.kt │ │ │ ├── di │ │ │ └── WidgetEntryPoint.kt │ │ │ └── ui │ │ │ ├── ClassicPlayer.kt │ │ │ ├── EpisodeImage.kt │ │ │ ├── GlanceModifierExtensions.kt │ │ │ ├── LargePlayer.kt │ │ │ ├── LargePlayerHeader.kt │ │ │ ├── LargePlayerQueue.kt │ │ │ ├── MediumPlayer.kt │ │ │ ├── NonScalingText.kt │ │ │ ├── PlayButton.kt │ │ │ ├── PlaybackButton.kt │ │ │ ├── PlaybackControls.kt │ │ │ ├── PocketCastsLogo.kt │ │ │ ├── RounderCornerBox.kt │ │ │ ├── SkipBackButton.kt │ │ │ ├── SkipForwardButton.kt │ │ │ ├── SmallPlayer.kt │ │ │ └── WidgetTheme.kt │ │ └── res │ │ ├── drawable-hdpi │ │ ├── widget_classic_nothing_loaded.png │ │ ├── widget_classic_pause.png │ │ ├── widget_classic_play.png │ │ ├── widget_classic_preview.png │ │ ├── widget_classic_skip_backward.png │ │ └── widget_classic_skip_forward.png │ │ ├── drawable-night-nodpi │ │ ├── widget_player_large_preview.png │ │ ├── widget_player_medium_preview.png │ │ └── widget_player_small_preview.png │ │ ├── drawable-nodpi │ │ ├── widget_player_large_preview.png │ │ ├── widget_player_medium_preview.png │ │ └── widget_player_small_preview.png │ │ ├── drawable-xhdpi │ │ ├── widget_classic_nothing_loaded.png │ │ ├── widget_classic_pause.png │ │ ├── widget_classic_play.png │ │ ├── widget_classic_preview.png │ │ ├── widget_classic_skip_backward.png │ │ └── widget_classic_skip_forward.png │ │ ├── drawable-xxhdpi │ │ ├── widget_classic_nothing_loaded.png │ │ ├── widget_classic_pause.png │ │ ├── widget_classic_play.png │ │ ├── widget_classic_preview.png │ │ ├── widget_classic_skip_backward.png │ │ └── widget_classic_skip_forward.png │ │ ├── drawable-xxxhdpi │ │ ├── widget_classic_nothing_loaded.png │ │ ├── widget_classic_pause.png │ │ ├── widget_classic_play.png │ │ ├── widget_classic_preview.png │ │ ├── widget_classic_skip_backward.png │ │ └── widget_classic_skip_forward.png │ │ ├── layout │ │ ├── classic_no_content_default.xml │ │ ├── classic_no_content_dynamic.xml │ │ ├── classic_surface_default.xml │ │ ├── classic_surface_dynamic.xml │ │ ├── non_scaling_text_bold_dynamic_oneline_opaque.xml │ │ ├── non_scaling_text_bold_dynamic_oneline_transparent.xml │ │ ├── non_scaling_text_bold_dynamic_twolines_opaque.xml │ │ ├── non_scaling_text_bold_dynamic_twolines_transparent.xml │ │ ├── non_scaling_text_bold_nondynamic_oneline_opaque.xml │ │ ├── non_scaling_text_bold_nondynamic_oneline_transparent.xml │ │ ├── non_scaling_text_bold_nondynamic_twolines_opaque.xml │ │ ├── non_scaling_text_bold_nondynamic_twolines_transparent.xml │ │ ├── non_scaling_text_regular_dynamic_oneline_opaque.xml │ │ ├── non_scaling_text_regular_dynamic_oneline_transparent.xml │ │ ├── non_scaling_text_regular_dynamic_twolines_opaque.xml │ │ ├── non_scaling_text_regular_dynamic_twolines_transparent.xml │ │ ├── non_scaling_text_regular_nondynamic_oneline_opaque.xml │ │ ├── non_scaling_text_regular_nondynamic_oneline_transparent.xml │ │ ├── non_scaling_text_regular_nondynamic_twolines_opaque.xml │ │ ├── non_scaling_text_regular_nondynamic_twolines_transparent.xml │ │ ├── widget_player_large_preview.xml │ │ ├── widget_player_medium_preview.xml │ │ └── widget_player_small_preview.xml │ │ ├── values-night │ │ └── colors.xml │ │ ├── values │ │ └── colors.xml │ │ └── xml │ │ ├── classic_player_widget.xml │ │ ├── large_player_widget.xml │ │ ├── medium_player_widget.xml │ │ └── small_player_widget.xml └── services │ ├── analytics │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── analytics │ │ │ ├── AccountStatusInfo.kt │ │ │ ├── AnalyticsEvent.kt │ │ │ ├── AnalyticsLoggingListener.kt │ │ │ ├── AnalyticsParameter.kt │ │ │ ├── AnalyticsTracker.kt │ │ │ ├── AnalyticsTrackerExtensions.kt │ │ │ ├── AnonymousBumpStatsTracker.kt │ │ │ ├── AppLifecycleAnalytics.kt │ │ │ ├── EpisodeAnalytics.kt │ │ │ ├── EpisodeDownloadError.kt │ │ │ ├── FirebaseAnalyticsTracker.kt │ │ │ ├── FirebaseAnalyticsWrapper.kt │ │ │ ├── IdentifyingTracker.kt │ │ │ ├── SourceView.kt │ │ │ ├── TrackedEvent.kt │ │ │ ├── Tracker.kt │ │ │ ├── TracksAnalyticsTracker.kt │ │ │ ├── di │ │ │ ├── ExperimentModule.kt │ │ │ └── TrackerModule.kt │ │ │ └── experiments │ │ │ ├── Experiment.kt │ │ │ ├── ExperimentProvider.kt │ │ │ ├── PaywallABTestCustomTreatment.kt │ │ │ └── Variation.kt │ │ └── test │ │ └── kotlin │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── analytics │ │ ├── EpisodeDownloadErrorTest.kt │ │ └── experiments │ │ └── ExperimentProviderTest.kt │ ├── compose │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── compose │ │ ├── Colors.kt │ │ ├── ComposeUtils.kt │ │ ├── Devices.kt │ │ ├── PlayerColors.kt │ │ ├── PocketCastsColors.kt │ │ ├── PodcastColors.kt │ │ ├── Theme.kt │ │ ├── ThemeColors.kt │ │ ├── ad │ │ ├── AdBanner.kt │ │ ├── AdColors.kt │ │ ├── AdDecisionsColumn.kt │ │ ├── AdReportContent.kt │ │ └── AdReportReasonsColumn.kt │ │ ├── adaptive │ │ └── WindowSizeClass.kt │ │ ├── bars │ │ ├── BottomSheetAppBar.kt │ │ ├── SystemBarsStyles.kt │ │ └── ThemedTopAppBar.kt │ │ ├── bookmark │ │ ├── BookmarkColors.kt │ │ ├── BookmarkRow.kt │ │ └── HeaderRow.kt │ │ ├── bottomsheet │ │ ├── BottomSheetContent.kt │ │ └── ModalBottomSheet.kt │ │ ├── buttons │ │ ├── BaseRowButton.kt │ │ ├── ButtonTabs.kt │ │ ├── CircleButton.kt │ │ ├── CircleIconButton.kt │ │ ├── CloseButton.kt │ │ ├── GradientRowButton.kt │ │ ├── IconButtonSmall.kt │ │ ├── RowButton.kt │ │ ├── RowCloseButton.kt │ │ ├── RowLoadingButton.kt │ │ ├── RowOutlinedButton.kt │ │ ├── RowTextButton.kt │ │ ├── TimePlayButton.kt │ │ └── ToggleButtonGroup.kt │ │ ├── components │ │ ├── AnimatedNonNullVisibility.kt │ │ ├── AnimatedPlayPauseButton.kt │ │ ├── AutoResizeText.kt │ │ ├── Banner.kt │ │ ├── ChapterImage.kt │ │ ├── ClickableTextHelper.kt │ │ ├── CoilImage.kt │ │ ├── Confetti.kt │ │ ├── Dialog.kt │ │ ├── EmailAndPasswordFields.kt │ │ ├── EpisodeImage.kt │ │ ├── ExpandableText.kt │ │ ├── FadedLazyList.kt │ │ ├── FolderColorPicker.kt │ │ ├── FormField.kt │ │ ├── FormFieldDefaults.kt │ │ ├── GradientIcon.kt │ │ ├── HorizontalDivider.kt │ │ ├── HorizontalPagerWrapper.kt │ │ ├── NestedScrollLockableInteropConnection.kt │ │ ├── NoContentBanner.kt │ │ ├── NumberStepper.kt │ │ ├── PagerDotIndicator.kt │ │ ├── PagerProgressingIndicator.kt │ │ ├── PlaylistArtwork.kt │ │ ├── PocketCastsPill.kt │ │ ├── PodcastCover.kt │ │ ├── PodcastImage.kt │ │ ├── PodcastItem.kt │ │ ├── PodcastSelectedText.kt │ │ ├── ScrollingList.kt │ │ ├── SearchBar.kt │ │ ├── SegmentedTabBar.kt │ │ ├── SelectedOptionColumn.kt │ │ ├── Settings.kt │ │ ├── SparkleImage.kt │ │ ├── TextStyles.kt │ │ ├── ThemedSnackbarHost.kt │ │ ├── Tooltip.kt │ │ ├── UserAvatar.kt │ │ ├── UserEpisodeImage.kt │ │ └── ViewInteropNestedScrollConnection.kt │ │ ├── dialogs │ │ ├── OptionsDialogComponent.kt │ │ ├── OptionsDialogOption.kt │ │ └── RadioOptionsDialog.kt │ │ ├── extensions │ │ ├── Brush.kt │ │ ├── Clipboard.kt │ │ ├── Color.kt │ │ ├── ComposeView.kt │ │ ├── Float.kt │ │ ├── Fragment.kt │ │ ├── Int.kt │ │ ├── LazyGridScope.kt │ │ └── Modifier.kt │ │ ├── folder │ │ ├── FolderColor.kt │ │ ├── FolderImage.kt │ │ └── FolderImageSmall.kt │ │ ├── images │ │ ├── CountBadge.kt │ │ ├── GravatarProfileImage.kt │ │ ├── HorizontalLogo.kt │ │ ├── ProfileImage.kt │ │ ├── SubscriptionBadge.kt │ │ ├── VerticalLogo.kt │ │ └── VerticalLogoPlus.kt │ │ ├── layout │ │ └── WindowInsets.kt │ │ ├── loading │ │ └── LoadingView.kt │ │ ├── navigation │ │ ├── NavController.kt │ │ └── Transition.kt │ │ ├── podcast │ │ ├── ListPodcastSubscribeRow.kt │ │ ├── PodcastSelectGrid.kt │ │ ├── PodcastSelectImage.kt │ │ └── PodcastSubscribeImage.kt │ │ ├── preview │ │ └── ThemePreviewParameterProvider.kt │ │ ├── rearrange │ │ └── MenuActionRearrange.kt │ │ ├── reorderable │ │ └── ReorderableDataSource.kt │ │ ├── text │ │ ├── Extension.kt │ │ ├── HtmlText.kt │ │ ├── LinkText.kt │ │ └── SearchFieldState.kt │ │ └── toolbars │ │ └── textselection │ │ ├── CustomMenuItemOption.kt │ │ ├── CustomTextToolbar.kt │ │ ├── FloatingTextActionModeCallback.kt │ │ └── TextActionModeCallback.kt │ ├── crashlogging │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── crashlogging │ │ │ ├── BuildDataProvider.kt │ │ │ ├── ConnectionStatusProvider.kt │ │ │ ├── ContextBasedLocaleProvider.kt │ │ │ ├── CrashReportPermissionCheck.kt │ │ │ ├── ExceptionsFilter.kt │ │ │ ├── FilteringCrashLogging.kt │ │ │ ├── InitializeRemoteLogging.kt │ │ │ ├── LocaleProvider.kt │ │ │ ├── ObserveUser.kt │ │ │ ├── PocketCastsCrashLoggingDataProvider.kt │ │ │ └── di │ │ │ ├── CrashLoggingModule.kt │ │ │ └── ProvideApplicationScope.kt │ │ └── test │ │ └── java │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── crashlogging │ │ ├── ExceptionsFilterTest.kt │ │ ├── InitializeRemoteLoggingTest.kt │ │ ├── PocketCastsCrashLoggingDataProviderTest.kt │ │ └── fakes │ │ ├── FakeBuildDataProvider.kt │ │ ├── FakeCrashLogging.kt │ │ ├── FakeCrashReportPermissionCheck.kt │ │ ├── FakeEncryptedLogging.kt │ │ └── FakeObserveUser.kt │ ├── deeplink │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── deeplink │ │ │ ├── DeepLink.kt │ │ │ ├── DeepLinkFactory.kt │ │ │ └── SharingUrlTimestampParser.kt │ │ └── test │ │ └── kotlin │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── deeplink │ │ └── SharingUrlTimestampParserTest.kt │ ├── images │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── images │ │ │ ├── PocketCastsIcons.kt │ │ │ └── icons │ │ │ ├── StarEmpty.kt │ │ │ ├── StarFull.kt │ │ │ └── StarHalf.kt │ │ └── res │ │ ├── drawable-hdpi │ │ ├── account_benefit_backups.webp │ │ ├── account_benefit_recommendations.webp │ │ ├── account_benefit_sync.webp │ │ ├── android_mockup.webp │ │ ├── appicon_halloween.png │ │ ├── appicon_patron_chrome.png │ │ ├── appicon_patron_dark.png │ │ ├── appicon_patron_glow.png │ │ ├── appicon_patron_round.png │ │ ├── appicon_pride.png │ │ ├── appicon_radioactive.png │ │ ├── appicon_red_velvet.png │ │ ├── artwork_create_account.webp │ │ ├── auto_0_5.png │ │ ├── auto_0_6.png │ │ ├── auto_0_7.png │ │ ├── auto_0_8.png │ │ ├── auto_0_9.png │ │ ├── auto_1.png │ │ ├── auto_1_1.png │ │ ├── auto_1_2.png │ │ ├── auto_1_3.png │ │ ├── auto_1_4.png │ │ ├── auto_1_5.png │ │ ├── auto_1_6.png │ │ ├── auto_1_7.png │ │ ├── auto_1_8.png │ │ ├── auto_1_9.png │ │ ├── auto_2.png │ │ ├── auto_2_1.png │ │ ├── auto_2_2.png │ │ ├── auto_2_3.png │ │ ├── auto_2_4.png │ │ ├── auto_2_5.png │ │ ├── auto_2_6.png │ │ ├── auto_2_7.png │ │ ├── auto_2_8.png │ │ ├── auto_2_9.png │ │ ├── auto_3.png │ │ ├── auto_3_1.png │ │ ├── auto_3_2.png │ │ ├── auto_3_3.png │ │ ├── auto_3_4.png │ │ ├── auto_3_5.png │ │ ├── auto_3_6.png │ │ ├── auto_3_7.png │ │ ├── auto_3_8.png │ │ ├── auto_3_9.png │ │ ├── auto_4.png │ │ ├── auto_4_1.png │ │ ├── auto_4_2.png │ │ ├── auto_4_3.png │ │ ├── auto_4_4.png │ │ ├── auto_4_5.png │ │ ├── auto_4_6.png │ │ ├── auto_4_7.png │ │ ├── auto_4_8.png │ │ ├── auto_4_9.png │ │ ├── auto_5.png │ │ ├── auto_markasplayed.png │ │ ├── auto_star.png │ │ ├── auto_starred.png │ │ ├── castbox.png │ │ ├── discover_add.png │ │ ├── discover_add_dark.png │ │ ├── discover_subscribed.png │ │ ├── ic_action_share.png │ │ ├── ic_arrow_back_white_24dp.png │ │ ├── ic_calendar.xml │ │ ├── ic_email_white_24dp.png │ │ ├── ic_help_white_24dp.png │ │ ├── ic_logo_background.png │ │ ├── ic_logo_foreground.png │ │ ├── ic_palette_white_24dp.png │ │ ├── ic_password_24dp.png │ │ ├── ic_settings_white_24dp.png │ │ ├── ic_tick_small.xml │ │ ├── intro_story_1.webp │ │ ├── intro_story_2.webp │ │ ├── intro_story_3.webp │ │ ├── media_skipback.png │ │ ├── media_skipforward.png │ │ ├── miniplayer_shadow.9.png │ │ ├── miniplayer_shadow_dark.9.png │ │ ├── navdrawer_logo.png │ │ ├── notification.png │ │ ├── notification_action_archive.png │ │ ├── notification_action_archive_large.png │ │ ├── notification_action_download.png │ │ ├── notification_action_download_large.png │ │ ├── notification_action_play.png │ │ ├── notification_action_play_large.png │ │ ├── notification_action_playlast.png │ │ ├── notification_action_playlast_large.png │ │ ├── notification_action_playnext.png │ │ ├── notification_action_playnext_large.png │ │ ├── notification_download.png │ │ ├── notification_pause.png │ │ ├── notification_play.png │ │ ├── notification_skipbackwards.png │ │ ├── notification_skipforward.png │ │ ├── opml_from_url.webp │ │ ├── other_apps.png │ │ ├── pc_logo_pill.webp │ │ ├── playback_banner.webp │ │ ├── playback_error.png │ │ ├── playback_launch_banner.webp │ │ ├── playlists_onboarding_playlists.webp │ │ ├── playlists_onboarding_smart_playlists.webp │ │ ├── plus_logo_horizontal_dark.png │ │ ├── plus_logo_horizontal_light.png │ │ ├── plus_logo_vertical_dark.png │ │ ├── plus_logo_vertical_white.png │ │ ├── referrals_blob_bottom_right.webp │ │ ├── referrals_blob_top_left.webp │ │ ├── settings_sync.png │ │ ├── sonos_dark.webp │ │ ├── sonos_light.webp │ │ └── unplayed_overlay_dark.png │ │ ├── drawable-ldpi │ │ ├── account_benefit_backups.webp │ │ ├── account_benefit_recommendations.webp │ │ ├── account_benefit_sync.webp │ │ ├── android_mockup.webp │ │ ├── artwork_create_account.webp │ │ ├── intro_story_1.webp │ │ ├── intro_story_2.webp │ │ ├── intro_story_3.webp │ │ ├── opml_from_url.webp │ │ ├── pc_logo_pill.webp │ │ ├── playback_banner.webp │ │ ├── playback_launch_banner.webp │ │ ├── playlists_onboarding_playlists.webp │ │ ├── playlists_onboarding_smart_playlists.webp │ │ ├── referrals_blob_bottom_right.webp │ │ └── referrals_blob_top_left.webp │ │ ├── drawable-mdpi │ │ ├── account_benefit_backups.webp │ │ ├── account_benefit_recommendations.webp │ │ ├── account_benefit_sync.webp │ │ ├── android_mockup.webp │ │ ├── appicon_halloween.png │ │ ├── appicon_patron_chrome.png │ │ ├── appicon_patron_dark.png │ │ ├── appicon_patron_glow.png │ │ ├── appicon_patron_round.png │ │ ├── appicon_pride.png │ │ ├── appicon_radioactive.png │ │ ├── appicon_red_velvet.png │ │ ├── artwork_create_account.webp │ │ ├── castbox.png │ │ ├── ic_logo_background.png │ │ ├── ic_logo_foreground.png │ │ ├── intro_story_1.webp │ │ ├── intro_story_2.webp │ │ ├── intro_story_3.webp │ │ ├── opml_from_url.webp │ │ ├── other_apps.png │ │ ├── pc_logo_pill.webp │ │ ├── playback_banner.webp │ │ ├── playback_error.png │ │ ├── playback_launch_banner.webp │ │ ├── playlists_onboarding_playlists.webp │ │ ├── playlists_onboarding_smart_playlists.webp │ │ ├── plus_logo_horizontal_dark.png │ │ ├── plus_logo_horizontal_light.png │ │ ├── plus_logo_vertical_dark.png │ │ ├── plus_logo_vertical_white.png │ │ ├── referrals_blob_bottom_right.webp │ │ └── referrals_blob_top_left.webp │ │ ├── drawable-xhdpi │ │ ├── account_benefit_backups.webp │ │ ├── account_benefit_recommendations.webp │ │ ├── account_benefit_sync.webp │ │ ├── android_mockup.webp │ │ ├── appicon_halloween.png │ │ ├── appicon_patron_chrome.png │ │ ├── appicon_patron_dark.png │ │ ├── appicon_patron_glow.png │ │ ├── appicon_patron_round.png │ │ ├── appicon_pride.png │ │ ├── appicon_radioactive.png │ │ ├── appicon_red_velvet.png │ │ ├── artwork_create_account.webp │ │ ├── auto_0_5.png │ │ ├── auto_0_6.png │ │ ├── auto_0_7.png │ │ ├── auto_0_8.png │ │ ├── auto_0_9.png │ │ ├── auto_1.png │ │ ├── auto_1_1.png │ │ ├── auto_1_2.png │ │ ├── auto_1_3.png │ │ ├── auto_1_4.png │ │ ├── auto_1_5.png │ │ ├── auto_1_6.png │ │ ├── auto_1_7.png │ │ ├── auto_1_8.png │ │ ├── auto_1_9.png │ │ ├── auto_2.png │ │ ├── auto_2_1.png │ │ ├── auto_2_2.png │ │ ├── auto_2_3.png │ │ ├── auto_2_4.png │ │ ├── auto_2_5.png │ │ ├── auto_2_6.png │ │ ├── auto_2_7.png │ │ ├── auto_2_8.png │ │ ├── auto_2_9.png │ │ ├── auto_3.png │ │ ├── auto_3_1.png │ │ ├── auto_3_2.png │ │ ├── auto_3_3.png │ │ ├── auto_3_4.png │ │ ├── auto_3_5.png │ │ ├── auto_3_6.png │ │ ├── auto_3_7.png │ │ ├── auto_3_8.png │ │ ├── auto_3_9.png │ │ ├── auto_4.png │ │ ├── auto_4_1.png │ │ ├── auto_4_2.png │ │ ├── auto_4_3.png │ │ ├── auto_4_4.png │ │ ├── auto_4_5.png │ │ ├── auto_4_6.png │ │ ├── auto_4_7.png │ │ ├── auto_4_8.png │ │ ├── auto_4_9.png │ │ ├── auto_5.png │ │ ├── auto_markasplayed.png │ │ ├── auto_star.png │ │ ├── auto_starred.png │ │ ├── castbox.png │ │ ├── defaultartwork.png │ │ ├── defaultartwork_dark.png │ │ ├── defaultartwork_small.png │ │ ├── defaultartwork_small_dark.png │ │ ├── discover_add.png │ │ ├── discover_add_dark.png │ │ ├── discover_subscribed.png │ │ ├── ic_action_share.png │ │ ├── ic_arrow_back_white_24dp.png │ │ ├── ic_email_white_24dp.png │ │ ├── ic_help_white_24dp.png │ │ ├── ic_logo_background.png │ │ ├── ic_logo_foreground.png │ │ ├── ic_palette_white_24dp.png │ │ ├── ic_password_24dp.png │ │ ├── ic_reorder.xml │ │ ├── ic_settings_white_24dp.png │ │ ├── intro_story_1.webp │ │ ├── intro_story_2.webp │ │ ├── intro_story_3.webp │ │ ├── media_skipback.png │ │ ├── media_skipforward.png │ │ ├── miniplayer_shadow.9.png │ │ ├── miniplayer_shadow_dark.9.png │ │ ├── navdrawer_logo.png │ │ ├── notification.png │ │ ├── notification_action_archive.png │ │ ├── notification_action_archive_large.png │ │ ├── notification_action_download.png │ │ ├── notification_action_download_large.png │ │ ├── notification_action_play.png │ │ ├── notification_action_play_large.png │ │ ├── notification_action_playlast.png │ │ ├── notification_action_playlast_large.png │ │ ├── notification_action_playnext.png │ │ ├── notification_action_playnext_large.png │ │ ├── notification_download.png │ │ ├── notification_pause.png │ │ ├── notification_play.png │ │ ├── notification_skipbackwards.png │ │ ├── notification_skipforward.png │ │ ├── opml_from_url.webp │ │ ├── other_apps.png │ │ ├── pc_logo_pill.webp │ │ ├── playback_banner.webp │ │ ├── playback_error.png │ │ ├── playback_launch_banner.webp │ │ ├── playlists_onboarding_playlists.webp │ │ ├── playlists_onboarding_smart_playlists.webp │ │ ├── plus_logo_horizontal_dark.png │ │ ├── plus_logo_horizontal_light.png │ │ ├── plus_logo_vertical_dark.png │ │ ├── plus_logo_vertical_white.png │ │ ├── referrals_blob_bottom_right.webp │ │ ├── referrals_blob_top_left.webp │ │ ├── settings_sync.png │ │ ├── sonos_dark.webp │ │ ├── sonos_light.webp │ │ └── unplayed_overlay_dark.png │ │ ├── drawable-xxhdpi │ │ ├── account_benefit_backups.webp │ │ ├── account_benefit_recommendations.webp │ │ ├── account_benefit_sync.webp │ │ ├── android_mockup.webp │ │ ├── appicon_halloween.png │ │ ├── appicon_patron_chrome.png │ │ ├── appicon_patron_dark.png │ │ ├── appicon_patron_glow.png │ │ ├── appicon_patron_round.png │ │ ├── appicon_pride.png │ │ ├── appicon_radioactive.png │ │ ├── appicon_red_velvet.png │ │ ├── artwork_create_account.webp │ │ ├── auto_0_5.png │ │ ├── auto_0_6.png │ │ ├── auto_0_7.png │ │ ├── auto_0_8.png │ │ ├── auto_0_9.png │ │ ├── auto_1.png │ │ ├── auto_1_1.png │ │ ├── auto_1_2.png │ │ ├── auto_1_3.png │ │ ├── auto_1_4.png │ │ ├── auto_1_5.png │ │ ├── auto_1_6.png │ │ ├── auto_1_7.png │ │ ├── auto_1_8.png │ │ ├── auto_1_9.png │ │ ├── auto_2.png │ │ ├── auto_2_1.png │ │ ├── auto_2_2.png │ │ ├── auto_2_3.png │ │ ├── auto_2_4.png │ │ ├── auto_2_5.png │ │ ├── auto_2_6.png │ │ ├── auto_2_7.png │ │ ├── auto_2_8.png │ │ ├── auto_2_9.png │ │ ├── auto_3.png │ │ ├── auto_3_1.png │ │ ├── auto_3_2.png │ │ ├── auto_3_3.png │ │ ├── auto_3_4.png │ │ ├── auto_3_5.png │ │ ├── auto_3_6.png │ │ ├── auto_3_7.png │ │ ├── auto_3_8.png │ │ ├── auto_3_9.png │ │ ├── auto_4.png │ │ ├── auto_4_1.png │ │ ├── auto_4_2.png │ │ ├── auto_4_3.png │ │ ├── auto_4_4.png │ │ ├── auto_4_5.png │ │ ├── auto_4_6.png │ │ ├── auto_4_7.png │ │ ├── auto_4_8.png │ │ ├── auto_4_9.png │ │ ├── auto_5.png │ │ ├── auto_markasplayed.png │ │ ├── auto_star.png │ │ ├── auto_starred.png │ │ ├── castbox.png │ │ ├── defaultartwork.png │ │ ├── defaultartwork_dark.png │ │ ├── defaultartwork_small.png │ │ ├── defaultartwork_small_dark.png │ │ ├── discover_add.png │ │ ├── discover_add_dark.png │ │ ├── discover_subscribed.png │ │ ├── ic_action_share.png │ │ ├── ic_arrow_back_white_24dp.png │ │ ├── ic_email_white_24dp.png │ │ ├── ic_help_white_24dp.png │ │ ├── ic_logo_background.png │ │ ├── ic_logo_foreground.png │ │ ├── ic_palette_white_24dp.png │ │ ├── ic_settings_white_24dp.png │ │ ├── intro_story_1.webp │ │ ├── intro_story_2.webp │ │ ├── intro_story_3.webp │ │ ├── media_skipback.png │ │ ├── media_skipforward.png │ │ ├── miniplayer_shadow.9.png │ │ ├── miniplayer_shadow_dark.9.png │ │ ├── navdrawer_logo.png │ │ ├── notification.png │ │ ├── notification_action_archive.png │ │ ├── notification_action_archive_large.png │ │ ├── notification_action_download.png │ │ ├── notification_action_download_large.png │ │ ├── notification_action_play.png │ │ ├── notification_action_play_large.png │ │ ├── notification_action_playlast.png │ │ ├── notification_action_playlast_large.png │ │ ├── notification_action_playnext.png │ │ ├── notification_action_playnext_large.png │ │ ├── notification_download.png │ │ ├── notification_pause.png │ │ ├── notification_play.png │ │ ├── notification_skipbackwards.png │ │ ├── notification_skipforward.png │ │ ├── opml_from_url.webp │ │ ├── other_apps.png │ │ ├── pc_logo_pill.webp │ │ ├── playback_banner.webp │ │ ├── playback_error.png │ │ ├── playback_launch_banner.webp │ │ ├── playlists_onboarding_playlists.webp │ │ ├── playlists_onboarding_smart_playlists.webp │ │ ├── plus_logo_horizontal_dark.png │ │ ├── plus_logo_horizontal_light.png │ │ ├── plus_logo_vertical_dark.png │ │ ├── plus_logo_vertical_white.png │ │ ├── referrals_blob_bottom_right.webp │ │ ├── referrals_blob_top_left.webp │ │ ├── settings_sync.png │ │ ├── sonos_dark.webp │ │ ├── sonos_light.webp │ │ └── unplayed_overlay_dark.png │ │ ├── drawable-xxxhdpi │ │ ├── account_benefit_backups.webp │ │ ├── account_benefit_recommendations.webp │ │ ├── account_benefit_sync.webp │ │ ├── android_mockup.webp │ │ ├── appicon_halloween.png │ │ ├── appicon_patron_chrome.png │ │ ├── appicon_patron_dark.png │ │ ├── appicon_patron_glow.png │ │ ├── appicon_patron_round.png │ │ ├── appicon_pride.png │ │ ├── appicon_radioactive.png │ │ ├── appicon_red_velvet.png │ │ ├── artwork_create_account.webp │ │ ├── auto_0_5.png │ │ ├── auto_0_6.png │ │ ├── auto_0_7.png │ │ ├── auto_0_8.png │ │ ├── auto_0_9.png │ │ ├── auto_1.png │ │ ├── auto_1_1.png │ │ ├── auto_1_2.png │ │ ├── auto_1_3.png │ │ ├── auto_1_4.png │ │ ├── auto_1_5.png │ │ ├── auto_1_6.png │ │ ├── auto_1_7.png │ │ ├── auto_1_8.png │ │ ├── auto_1_9.png │ │ ├── auto_2.png │ │ ├── auto_2_1.png │ │ ├── auto_2_2.png │ │ ├── auto_2_3.png │ │ ├── auto_2_4.png │ │ ├── auto_2_5.png │ │ ├── auto_2_6.png │ │ ├── auto_2_7.png │ │ ├── auto_2_8.png │ │ ├── auto_2_9.png │ │ ├── auto_3.png │ │ ├── auto_3_1.png │ │ ├── auto_3_2.png │ │ ├── auto_3_3.png │ │ ├── auto_3_4.png │ │ ├── auto_3_5.png │ │ ├── auto_3_6.png │ │ ├── auto_3_7.png │ │ ├── auto_3_8.png │ │ ├── auto_3_9.png │ │ ├── auto_4.png │ │ ├── auto_4_1.png │ │ ├── auto_4_2.png │ │ ├── auto_4_3.png │ │ ├── auto_4_4.png │ │ ├── auto_4_5.png │ │ ├── auto_4_6.png │ │ ├── auto_4_7.png │ │ ├── auto_4_8.png │ │ ├── auto_4_9.png │ │ ├── auto_5.png │ │ ├── auto_markasplayed.png │ │ ├── auto_star.png │ │ ├── auto_starred.png │ │ ├── castbox.png │ │ ├── discover_add.png │ │ ├── discover_add_dark.png │ │ ├── discover_subscribed.png │ │ ├── ic_arrow_back_white_24dp.png │ │ ├── ic_email_white_24dp.png │ │ ├── ic_help_white_24dp.png │ │ ├── ic_logo_background.png │ │ ├── ic_logo_foreground.png │ │ ├── ic_palette_white_24dp.png │ │ ├── ic_password_24dp.png │ │ ├── ic_settings_white_24dp.png │ │ ├── intro_story_1.webp │ │ ├── intro_story_2.webp │ │ ├── intro_story_3.webp │ │ ├── media_skipback.png │ │ ├── media_skipforward.png │ │ ├── miniplayer_shadow.9.png │ │ ├── miniplayer_shadow_dark.9.png │ │ ├── navdrawer_logo.png │ │ ├── notification.png │ │ ├── notification_action_archive.png │ │ ├── notification_action_archive_large.png │ │ ├── notification_action_download.png │ │ ├── notification_action_download_large.png │ │ ├── notification_action_play.png │ │ ├── notification_action_play_large.png │ │ ├── notification_action_playlast.png │ │ ├── notification_action_playlast_large.png │ │ ├── notification_action_playnext.png │ │ ├── notification_action_playnext_large.png │ │ ├── notification_download.png │ │ ├── notification_pause.png │ │ ├── notification_play.png │ │ ├── notification_skipbackwards.png │ │ ├── notification_skipforward.png │ │ ├── opml_from_url.webp │ │ ├── other_apps.png │ │ ├── pc_logo_pill.webp │ │ ├── playback_banner.webp │ │ ├── playback_error.png │ │ ├── playback_launch_banner.webp │ │ ├── playlists_onboarding_playlists.webp │ │ ├── playlists_onboarding_smart_playlists.webp │ │ ├── plus_logo_horizontal_dark.png │ │ ├── plus_logo_horizontal_light.png │ │ ├── plus_logo_vertical_dark.png │ │ ├── plus_logo_vertical_white.png │ │ ├── referrals_blob_bottom_right.webp │ │ ├── referrals_blob_top_left.webp │ │ ├── settings_sync.png │ │ ├── sonos_dark.webp │ │ ├── sonos_light.webp │ │ └── unplayed_overlay_dark.png │ │ ├── drawable │ │ ├── about_logo_automattic.xml │ │ ├── about_logo_dayone.xml │ │ ├── about_logo_jetpack.xml │ │ ├── about_logo_pocketcasts.xml │ │ ├── about_logo_simplenote.xml │ │ ├── about_logo_tumblr.xml │ │ ├── about_logo_tumblr_dark.xml │ │ ├── about_logo_woo.xml │ │ ├── account_header_dark.xml │ │ ├── account_header_light.xml │ │ ├── appicon_rose.xml │ │ ├── artwork_0.webp │ │ ├── artwork_1.webp │ │ ├── artwork_10.webp │ │ ├── artwork_11.webp │ │ ├── artwork_12.webp │ │ ├── artwork_13.webp │ │ ├── artwork_14.webp │ │ ├── artwork_15.webp │ │ ├── artwork_16.webp │ │ ├── artwork_17.webp │ │ ├── artwork_2.webp │ │ ├── artwork_3.webp │ │ ├── artwork_4.webp │ │ ├── artwork_5.webp │ │ ├── artwork_6.webp │ │ ├── artwork_7.webp │ │ ├── artwork_8.webp │ │ ├── artwork_9.webp │ │ ├── auto_files.xml │ │ ├── auto_filter_clock.xml │ │ ├── auto_filter_downloaded.xml │ │ ├── auto_filter_headphones.xml │ │ ├── auto_filter_list.xml │ │ ├── auto_filter_play.xml │ │ ├── auto_filter_star.xml │ │ ├── auto_filter_video.xml │ │ ├── auto_filter_volume.xml │ │ ├── auto_folder_01.xml │ │ ├── auto_folder_02.xml │ │ ├── auto_folder_03.xml │ │ ├── auto_folder_04.xml │ │ ├── auto_folder_05.xml │ │ ├── auto_folder_06.xml │ │ ├── auto_folder_07.xml │ │ ├── auto_tab_discover.xml │ │ ├── auto_tab_filter.xml │ │ ├── auto_tab_playlists.xml │ │ ├── auto_tab_podcasts.xml │ │ ├── auto_tab_profile.xml │ │ ├── automotive_files.xml │ │ ├── automotive_filter_clock.xml │ │ ├── automotive_filter_downloaded.xml │ │ ├── automotive_filter_headphones.xml │ │ ├── automotive_filter_list.xml │ │ ├── automotive_filter_play.xml │ │ ├── automotive_filter_star.xml │ │ ├── automotive_filter_video.xml │ │ ├── automotive_filter_volume.xml │ │ ├── automotive_listening_history.xml │ │ ├── baseline_phone_android_24.xml │ │ ├── button_download.xml │ │ ├── button_pause.xml │ │ ├── button_play.xml │ │ ├── button_played.xml │ │ ├── button_retry.xml │ │ ├── circle_star.xml │ │ ├── crown.xml │ │ ├── drawable_selected.xml │ │ ├── end_of_year_2024_completion_rate_patron_badge.xml │ │ ├── end_of_year_2024_completion_rate_plus_badge.xml │ │ ├── end_of_year_2024_pb24.xml │ │ ├── end_of_year_2024_playback_text.xml │ │ ├── end_of_year_2024_sticker_1.xml │ │ ├── end_of_year_2024_sticker_2.xml │ │ ├── eoy_heart_text_stop.xml │ │ ├── eoy_plus_text_stop.xml │ │ ├── eoy_star_text_stop.xml │ │ ├── filter_bullet.xml │ │ ├── filter_download.xml │ │ ├── filter_headset.xml │ │ ├── filter_play.xml │ │ ├── filter_star.xml │ │ ├── filter_time.xml │ │ ├── filter_video.xml │ │ ├── filter_volume.xml │ │ ├── focus_border_white.xml │ │ ├── folder_change.xml │ │ ├── folder_remove.xml │ │ ├── go_to.xml │ │ ├── google_g.xml │ │ ├── google_g_white.xml │ │ ├── ic_account_benefit_backups.xml │ │ ├── ic_account_benefit_recommendations.xml │ │ ├── ic_account_benefit_sync.xml │ │ ├── ic_account_free.xml │ │ ├── ic_account_plus.xml │ │ ├── ic_add_black_24dp.xml │ │ ├── ic_add_episode.xml │ │ ├── ic_add_to_playlist_action.xml │ │ ├── ic_ai.xml │ │ ├── ic_alert_small.xml │ │ ├── ic_anim_close_back.xml │ │ ├── ic_appicon0.xml │ │ ├── ic_appicon1.xml │ │ ├── ic_appicon2.xml │ │ ├── ic_appicon3.xml │ │ ├── ic_appicon4.xml │ │ ├── ic_appicon5.xml │ │ ├── ic_appicon6.xml │ │ ├── ic_appicon7.xml │ │ ├── ic_appicon_indigo.xml │ │ ├── ic_appicon_pocket_cats.xml │ │ ├── ic_apptheme0.xml │ │ ├── ic_apptheme1.xml │ │ ├── ic_apptheme2.xml │ │ ├── ic_apptheme3.xml │ │ ├── ic_apptheme4.xml │ │ ├── ic_apptheme5.xml │ │ ├── ic_apptheme6.xml │ │ ├── ic_apptheme7.xml │ │ ├── ic_archive.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_arrow_back_24dp.xml │ │ ├── ic_arrow_goto.xml │ │ ├── ic_arrow_right_small.xml │ │ ├── ic_audio_card.xml │ │ ├── ic_author_small.xml │ │ ├── ic_auto_playlist_manual.xml │ │ ├── ic_auto_playlist_smart.xml │ │ ├── ic_automotive_playlist_manual.xml │ │ ├── ic_automotive_playlist_smart.xml │ │ ├── ic_bookmark.xml │ │ ├── ic_cancel.xml │ │ ├── ic_check.xml │ │ ├── ic_check_black_24dp.xml │ │ ├── ic_checkmark_small.xml │ │ ├── ic_chevron.xml │ │ ├── ic_chevron_right.xml │ │ ├── ic_chevron_small_right.xml │ │ ├── ic_chevron_small_up.xml │ │ ├── ic_chevron_transparent.xml │ │ ├── ic_chevron_trimmed.xml │ │ ├── ic_chevron_white.xml │ │ ├── ic_chrome_cast.xml │ │ ├── ic_circle.xml │ │ ├── ic_close.xml │ │ ├── ic_close_outlined.xml │ │ ├── ic_close_sheet.xml │ │ ├── ic_cloud.xml │ │ ├── ic_cloud_storage.xml │ │ ├── ic_delete.xml │ │ ├── ic_deselectall.xml │ │ ├── ic_deselectall_down.xml │ │ ├── ic_deselectall_up.xml │ │ ├── ic_different_plan.xml │ │ ├── ic_discover.xml │ │ ├── ic_download.xml │ │ ├── ic_download_failed_row.xml │ │ ├── ic_downloaded.xml │ │ ├── ic_downloaded_24dp.xml │ │ ├── ic_downloading.xml │ │ ├── ic_duplicate.xml │ │ ├── ic_edit.xml │ │ ├── ic_effects_off.xml │ │ ├── ic_effects_plus.xml │ │ ├── ic_envelope.xml │ │ ├── ic_episode_unavailable.xml │ │ ├── ic_exclamation_circle.xml │ │ ├── ic_failed.xml │ │ ├── ic_failedwarning.xml │ │ ├── ic_file.xml │ │ ├── ic_filters.xml │ │ ├── ic_filters_calendar.xml │ │ ├── ic_filters_clock.xml │ │ ├── ic_filters_download.xml │ │ ├── ic_filters_headphones.xml │ │ ├── ic_filters_list.xml │ │ ├── ic_filters_play.xml │ │ ├── ic_filters_star.xml │ │ ├── ic_filters_video.xml │ │ ├── ic_filters_volume.xml │ │ ├── ic_folder.xml │ │ ├── ic_folder_bold.xml │ │ ├── ic_folder_check.xml │ │ ├── ic_folder_lock.xml │ │ ├── ic_folder_plus.xml │ │ ├── ic_goto_32.xml │ │ ├── ic_headphone.xml │ │ ├── ic_heart.xml │ │ ├── ic_heart_2.xml │ │ ├── ic_heart_bundle.xml │ │ ├── ic_help.xml │ │ ├── ic_history.xml │ │ ├── ic_icons.xml │ │ ├── ic_indigo.xml │ │ ├── ic_info.xml │ │ ├── ic_launcher_4_monochrome.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_cat_monochrome.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_halloween_monochrome.xml │ │ ├── ic_launcher_indigo_background.xml │ │ ├── ic_launcher_indigo_foreground.xml │ │ ├── ic_launcher_monochrome.xml │ │ ├── ic_launcher_patron_monochrome.xml │ │ ├── ic_launcher_prototype_background.xml │ │ ├── ic_launcher_prototype_foreground.xml │ │ ├── ic_launcher_rose_background.xml │ │ ├── ic_launcher_rose_foreground.xml │ │ ├── ic_listen_history.xml │ │ ├── ic_locked.xml │ │ ├── ic_locked_large.xml │ │ ├── ic_logo_title_hor_dark.xml │ │ ├── ic_logo_title_hor_light.xml │ │ ├── ic_logo_title_ver_dark.xml │ │ ├── ic_logo_title_ver_light.xml │ │ ├── ic_mail.xml │ │ ├── ic_markasplayed.xml │ │ ├── ic_markasunplayed.xml │ │ ├── ic_minus.xml │ │ ├── ic_more_vert_black_24dp.xml │ │ ├── ic_multiselect.xml │ │ ├── ic_new_features.xml │ │ ├── ic_newsletter.xml │ │ ├── ic_notification_edit.xml │ │ ├── ic_notifications.xml │ │ ├── ic_notifications_off.xml │ │ ├── ic_notifications_on.xml │ │ ├── ic_overflow.xml │ │ ├── ic_password.xml │ │ ├── ic_patron.xml │ │ ├── ic_phone_idicator_icons.xml │ │ ├── ic_play.xml │ │ ├── ic_play_all.xml │ │ ├── ic_playlist_add_episode.xml │ │ ├── ic_playlist_archive_all.xml │ │ ├── ic_playlist_edit.xml │ │ ├── ic_playlist_play.xml │ │ ├── ic_playlist_play_all.xml │ │ ├── ic_playlist_remove_episode.xml │ │ ├── ic_playlist_smart_rules.xml │ │ ├── ic_playlists.xml │ │ ├── ic_playlists_download_all.xml │ │ ├── ic_playlists_options.xml │ │ ├── ic_playlists_select_episode.xml │ │ ├── ic_playlists_sort.xml │ │ ├── ic_plus.xml │ │ ├── ic_plus_feature_bookmark.xml │ │ ├── ic_plus_feature_chapters.xml │ │ ├── ic_plus_feature_cloud_storage.xml │ │ ├── ic_plus_feature_folder.xml │ │ ├── ic_plus_feature_libro.xml │ │ ├── ic_plus_feature_shuffle.xml │ │ ├── ic_plus_feature_slumber_studios.xml │ │ ├── ic_plus_feature_themes.xml │ │ ├── ic_plus_feature_wearable.xml │ │ ├── ic_podcasts.xml │ │ ├── ic_privacy_policy.xml │ │ ├── ic_profile.xml │ │ ├── ic_profile_badge.xml │ │ ├── ic_profile_circle.xml │ │ ├── ic_profile_download.xml │ │ ├── ic_profile_settings.xml │ │ ├── ic_refresh.xml │ │ ├── ic_remove_ads.xml │ │ ├── ic_remove_from_cloud.xml │ │ ├── ic_replace.xml │ │ ├── ic_report_ad.xml │ │ ├── ic_retry.xml │ │ ├── ic_rule_download_status.xml │ │ ├── ic_rule_duration.xml │ │ ├── ic_rule_episode_status.xml │ │ ├── ic_rule_media_type.xml │ │ ├── ic_rule_podcasts.xml │ │ ├── ic_rule_release_date.xml │ │ ├── ic_rule_starred.xml │ │ ├── ic_science.xml │ │ ├── ic_search.xml │ │ ├── ic_selectall.xml │ │ ├── ic_selectall_down.xml │ │ ├── ic_selectall_up.xml │ │ ├── ic_share.xml │ │ ├── ic_share_logo_instagram.xml │ │ ├── ic_share_logo_more.xml │ │ ├── ic_share_logo_pocket_casts.xml │ │ ├── ic_share_logo_telegram.xml │ │ ├── ic_share_logo_tumblr.xml │ │ ├── ic_share_logo_whats_app.xml │ │ ├── ic_share_logo_x.xml │ │ ├── ic_signout.xml │ │ ├── ic_skip_back.xml │ │ ├── ic_skip_forward.xml │ │ ├── ic_skip_next.xml │ │ ├── ic_sleep.xml │ │ ├── ic_sort.xml │ │ ├── ic_sparkle_1.xml │ │ ├── ic_sparkle_2.xml │ │ ├── ic_sparkle_3.xml │ │ ├── ic_speed.xml │ │ ├── ic_speed_number.xml │ │ ├── ic_star.xml │ │ ├── ic_star_50.xml │ │ ├── ic_star_filled.xml │ │ ├── ic_starred.xml │ │ ├── ic_stats.xml │ │ ├── ic_stop.xml │ │ ├── ic_subscription.xml │ │ ├── ic_subscription_cancel.xml │ │ ├── ic_terms_conditions.xml │ │ ├── ic_theme_radioactive.xml │ │ ├── ic_theme_rose.xml │ │ ├── ic_tick.xml │ │ ├── ic_tick_circle.xml │ │ ├── ic_transcript_24.xml │ │ ├── ic_trim.xml │ │ ├── ic_unarchive.xml │ │ ├── ic_undownload.xml │ │ ├── ic_unlocked.xml │ │ ├── ic_unstar.xml │ │ ├── ic_uploadedfile.xml │ │ ├── ic_upnext.xml │ │ ├── ic_upnext_movetobottom.xml │ │ ├── ic_upnext_movetotop.xml │ │ ├── ic_upnext_playlast.xml │ │ ├── ic_upnext_playnext.xml │ │ ├── ic_upnext_remove.xml │ │ ├── ic_upnext_tab.xml │ │ ├── ic_video_small_fill.xml │ │ ├── ic_waitingforpower.xml │ │ ├── ic_waitingforwifi.xml │ │ ├── ic_warning.xml │ │ ├── ic_widget_pause.xml │ │ ├── ic_widget_play.xml │ │ ├── ic_widget_skip_back.xml │ │ ├── ic_widget_skip_forward.xml │ │ ├── ic_wifi.xml │ │ ├── ic_winback_offer_heart_1.xml │ │ ├── ic_winback_offer_heart_2.xml │ │ ├── logo_pocket_casts.xml │ │ ├── minus_simple.xml │ │ ├── pc_bw_import.xml │ │ ├── pencil_cleanup.xml │ │ ├── person_outline.xml │ │ ├── person_outline_check.xml │ │ ├── player_header_background.xml │ │ ├── plus_check.xml │ │ ├── plus_logo.xml │ │ ├── plus_simple.xml │ │ ├── pocket_casts_logo.xml │ │ ├── pocket_casts_plus_logo.xml │ │ ├── rounded_rectangle.xml │ │ ├── search_failed.xml │ │ ├── settings_stats.xml │ │ ├── shortcut_clock.xml │ │ ├── shortcut_download.xml │ │ ├── shortcut_grid.xml │ │ ├── shortcut_headphones.xml │ │ ├── shortcut_list.xml │ │ ├── shortcut_play.xml │ │ ├── shortcut_search.xml │ │ ├── shortcut_star.xml │ │ ├── shortcut_upnext.xml │ │ ├── shortcut_video.xml │ │ ├── shortcut_volume.xml │ │ ├── shuffle.xml │ │ ├── shuffle_enabled.xml │ │ ├── shuffle_plus_feature_icon.xml │ │ ├── signin.xml │ │ ├── sleep_timer_cog.xml │ │ ├── waiting_for_metered.xml │ │ ├── waiting_for_power.xml │ │ ├── waiting_for_wifi.xml │ │ ├── wear_pause.xml │ │ ├── wear_play.xml │ │ ├── wear_skip_back.xml │ │ ├── wear_skip_foreward.xml │ │ ├── wear_volume.xml │ │ ├── wear_volume_max.xml │ │ └── wear_volume_mute.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_1.xml │ │ ├── ic_launcher_1_round.xml │ │ ├── ic_launcher_2.xml │ │ ├── ic_launcher_2_round.xml │ │ ├── ic_launcher_3.xml │ │ ├── ic_launcher_3_round.xml │ │ ├── ic_launcher_4.xml │ │ ├── ic_launcher_4_round.xml │ │ ├── ic_launcher_5.xml │ │ ├── ic_launcher_5_round.xml │ │ ├── ic_launcher_6.xml │ │ ├── ic_launcher_6_round.xml │ │ ├── ic_launcher_7.xml │ │ ├── ic_launcher_7_round.xml │ │ ├── ic_launcher_cat.xml │ │ ├── ic_launcher_cat_round.xml │ │ ├── ic_launcher_halloween.xml │ │ ├── ic_launcher_halloween_round.xml │ │ ├── ic_launcher_indigo.xml │ │ ├── ic_launcher_indigo_round.xml │ │ ├── ic_launcher_patron_chrome.xml │ │ ├── ic_launcher_patron_dark.xml │ │ ├── ic_launcher_patron_glow.xml │ │ ├── ic_launcher_patron_round.xml │ │ ├── ic_launcher_pride.xml │ │ ├── ic_launcher_prototype.xml │ │ ├── ic_launcher_radioactive.xml │ │ ├── ic_launcher_radioactive_round.xml │ │ ├── ic_launcher_redvelvet.xml │ │ ├── ic_launcher_redvelvet_round.xml │ │ ├── ic_launcher_rose.xml │ │ ├── ic_launcher_rose_round.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── appicon_background.png │ │ ├── appicon_foreground.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_1.png │ │ ├── ic_launcher_1_round.png │ │ ├── ic_launcher_2.png │ │ ├── ic_launcher_2023_pride.png │ │ ├── ic_launcher_2_foreground.png │ │ ├── ic_launcher_2_round.png │ │ ├── ic_launcher_3.png │ │ ├── ic_launcher_3_background.png │ │ ├── ic_launcher_3_foreground.png │ │ ├── ic_launcher_3_round.png │ │ ├── ic_launcher_4.png │ │ ├── ic_launcher_4_background.png │ │ ├── ic_launcher_4_foreground.png │ │ ├── ic_launcher_4_round.png │ │ ├── ic_launcher_5.png │ │ ├── ic_launcher_5_background.png │ │ ├── ic_launcher_5_foreground.png │ │ ├── ic_launcher_6.png │ │ ├── ic_launcher_6_background.png │ │ ├── ic_launcher_6_foreground.png │ │ ├── ic_launcher_6_round.png │ │ ├── ic_launcher_7.png │ │ ├── ic_launcher_7_background.png │ │ ├── ic_launcher_7_foreground.png │ │ ├── ic_launcher_7_round.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_cat.png │ │ ├── ic_launcher_cat_foreground.png │ │ ├── ic_launcher_cat_round.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_halloween.png │ │ ├── ic_launcher_halloween_background.png │ │ ├── ic_launcher_halloween_foreground.png │ │ ├── ic_launcher_halloween_round.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_indigo_background.png │ │ ├── ic_launcher_indigo_foreground.png │ │ ├── ic_launcher_indigo_round.png │ │ ├── ic_launcher_patron_chrome.png │ │ ├── ic_launcher_patron_chrome_background.png │ │ ├── ic_launcher_patron_chrome_foreground.png │ │ ├── ic_launcher_patron_dark.png │ │ ├── ic_launcher_patron_dark_background.png │ │ ├── ic_launcher_patron_dark_foreground.png │ │ ├── ic_launcher_patron_glow.png │ │ ├── ic_launcher_patron_glow_background.png │ │ ├── ic_launcher_patron_glow_foreground.png │ │ ├── ic_launcher_patron_round.png │ │ ├── ic_launcher_patron_round_background.png │ │ ├── ic_launcher_patron_round_foreground.png │ │ ├── ic_launcher_pride_background.png │ │ ├── ic_launcher_pride_foreground.png │ │ ├── ic_launcher_radioactive.png │ │ ├── ic_launcher_radioactive_background.png │ │ ├── ic_launcher_radioactive_foreground.png │ │ ├── ic_launcher_radioactive_round.png │ │ ├── ic_launcher_redvelvet.png │ │ ├── ic_launcher_redvelvet_background.png │ │ ├── ic_launcher_redvelvet_foreground.png │ │ ├── ic_launcher_redvelvet_round.png │ │ ├── ic_launcher_rose.png │ │ ├── ic_launcher_rose_round.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── appicon_background.png │ │ ├── appicon_foreground.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_1.png │ │ ├── ic_launcher_1_round.png │ │ ├── ic_launcher_2.png │ │ ├── ic_launcher_2_foreground.png │ │ ├── ic_launcher_2_round.png │ │ ├── ic_launcher_3.png │ │ ├── ic_launcher_3_background.png │ │ ├── ic_launcher_3_foreground.png │ │ ├── ic_launcher_3_round.png │ │ ├── ic_launcher_4.png │ │ ├── ic_launcher_4_background.png │ │ ├── ic_launcher_4_foreground.png │ │ ├── ic_launcher_4_round.png │ │ ├── ic_launcher_5.png │ │ ├── ic_launcher_5_background.png │ │ ├── ic_launcher_5_foreground.png │ │ ├── ic_launcher_6.png │ │ ├── ic_launcher_6_background.png │ │ ├── ic_launcher_6_foreground.png │ │ ├── ic_launcher_6_round.png │ │ ├── ic_launcher_7.png │ │ ├── ic_launcher_7_background.png │ │ ├── ic_launcher_7_foreground.png │ │ ├── ic_launcher_7_round.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_cat.png │ │ ├── ic_launcher_cat_foreground.png │ │ ├── ic_launcher_cat_round.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_halloween.png │ │ ├── ic_launcher_halloween_background.png │ │ ├── ic_launcher_halloween_foreground.png │ │ ├── ic_launcher_halloween_round.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_indigo_background.png │ │ ├── ic_launcher_indigo_foreground.png │ │ ├── ic_launcher_indigo_round.png │ │ ├── ic_launcher_patron_chrome.png │ │ ├── ic_launcher_patron_chrome_background.png │ │ ├── ic_launcher_patron_chrome_foreground.png │ │ ├── ic_launcher_patron_dark.png │ │ ├── ic_launcher_patron_dark_background.png │ │ ├── ic_launcher_patron_dark_foreground.png │ │ ├── ic_launcher_patron_glow.png │ │ ├── ic_launcher_patron_glow_background.png │ │ ├── ic_launcher_patron_glow_foreground.png │ │ ├── ic_launcher_patron_round.png │ │ ├── ic_launcher_patron_round_background.png │ │ ├── ic_launcher_patron_round_foreground.png │ │ ├── ic_launcher_pride.png │ │ ├── ic_launcher_pride_background.png │ │ ├── ic_launcher_pride_foreground.png │ │ ├── ic_launcher_radioactive.png │ │ ├── ic_launcher_radioactive_background.png │ │ ├── ic_launcher_radioactive_foreground.png │ │ ├── ic_launcher_radioactive_round.png │ │ ├── ic_launcher_redvelvet.png │ │ ├── ic_launcher_redvelvet_background.png │ │ ├── ic_launcher_redvelvet_foreground.png │ │ ├── ic_launcher_redvelvet_round.png │ │ ├── ic_launcher_rose.png │ │ ├── ic_launcher_rose_round.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── appicon_background.png │ │ ├── appicon_foreground.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_1.png │ │ ├── ic_launcher_1_round.png │ │ ├── ic_launcher_2.png │ │ ├── ic_launcher_2_foreground.png │ │ ├── ic_launcher_2_round.png │ │ ├── ic_launcher_3.png │ │ ├── ic_launcher_3_background.png │ │ ├── ic_launcher_3_foreground.png │ │ ├── ic_launcher_3_round.png │ │ ├── ic_launcher_4.png │ │ ├── ic_launcher_4_background.png │ │ ├── ic_launcher_4_foreground.png │ │ ├── ic_launcher_4_round.png │ │ ├── ic_launcher_5.png │ │ ├── ic_launcher_5_background.png │ │ ├── ic_launcher_5_foreground.png │ │ ├── ic_launcher_6.png │ │ ├── ic_launcher_6_background.png │ │ ├── ic_launcher_6_foreground.png │ │ ├── ic_launcher_6_round.png │ │ ├── ic_launcher_7.png │ │ ├── ic_launcher_7_background.png │ │ ├── ic_launcher_7_foreground.png │ │ ├── ic_launcher_7_round.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_cat.png │ │ ├── ic_launcher_cat_foreground.png │ │ ├── ic_launcher_cat_round.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_halloween.png │ │ ├── ic_launcher_halloween_background.png │ │ ├── ic_launcher_halloween_foreground.png │ │ ├── ic_launcher_halloween_round.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_indigo_background.png │ │ ├── ic_launcher_indigo_foreground.png │ │ ├── ic_launcher_indigo_round.png │ │ ├── ic_launcher_patron_chrome.png │ │ ├── ic_launcher_patron_chrome_background.png │ │ ├── ic_launcher_patron_chrome_foreground.png │ │ ├── ic_launcher_patron_dark.png │ │ ├── ic_launcher_patron_dark_background.png │ │ ├── ic_launcher_patron_dark_foreground.png │ │ ├── ic_launcher_patron_glow.png │ │ ├── ic_launcher_patron_glow_background.png │ │ ├── ic_launcher_patron_glow_foreground.png │ │ ├── ic_launcher_patron_round.png │ │ ├── ic_launcher_patron_round_background.png │ │ ├── ic_launcher_patron_round_foreground.png │ │ ├── ic_launcher_pride.png │ │ ├── ic_launcher_pride_background.png │ │ ├── ic_launcher_pride_foreground.png │ │ ├── ic_launcher_radioactive.png │ │ ├── ic_launcher_radioactive_background.png │ │ ├── ic_launcher_radioactive_foreground.png │ │ ├── ic_launcher_radioactive_round.png │ │ ├── ic_launcher_redvelvet.png │ │ ├── ic_launcher_redvelvet_background.png │ │ ├── ic_launcher_redvelvet_foreground.png │ │ ├── ic_launcher_redvelvet_round.png │ │ ├── ic_launcher_rose.png │ │ ├── ic_launcher_rose_round.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── appicon_background.png │ │ ├── appicon_foreground.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_1.png │ │ ├── ic_launcher_1_round.png │ │ ├── ic_launcher_2.png │ │ ├── ic_launcher_2_foreground.png │ │ ├── ic_launcher_2_round.png │ │ ├── ic_launcher_3.png │ │ ├── ic_launcher_3_background.png │ │ ├── ic_launcher_3_foreground.png │ │ ├── ic_launcher_3_round.png │ │ ├── ic_launcher_4.png │ │ ├── ic_launcher_4_background.png │ │ ├── ic_launcher_4_foreground.png │ │ ├── ic_launcher_4_round.png │ │ ├── ic_launcher_5.png │ │ ├── ic_launcher_5_background.png │ │ ├── ic_launcher_5_foreground.png │ │ ├── ic_launcher_6.png │ │ ├── ic_launcher_6_background.png │ │ ├── ic_launcher_6_foreground.png │ │ ├── ic_launcher_6_round.png │ │ ├── ic_launcher_7.png │ │ ├── ic_launcher_7_background.png │ │ ├── ic_launcher_7_foreground.png │ │ ├── ic_launcher_7_round.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_cat.png │ │ ├── ic_launcher_cat_foreground.png │ │ ├── ic_launcher_cat_round.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_halloween.png │ │ ├── ic_launcher_halloween_background.png │ │ ├── ic_launcher_halloween_foreground.png │ │ ├── ic_launcher_halloween_round.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_indigo_background.png │ │ ├── ic_launcher_indigo_foreground.png │ │ ├── ic_launcher_indigo_round.png │ │ ├── ic_launcher_patron_chrome.png │ │ ├── ic_launcher_patron_chrome_background.png │ │ ├── ic_launcher_patron_chrome_foreground.png │ │ ├── ic_launcher_patron_dark.png │ │ ├── ic_launcher_patron_dark_background.png │ │ ├── ic_launcher_patron_dark_foreground.png │ │ ├── ic_launcher_patron_glow.png │ │ ├── ic_launcher_patron_glow_background.png │ │ ├── ic_launcher_patron_glow_foreground.png │ │ ├── ic_launcher_patron_round.png │ │ ├── ic_launcher_patron_round_background.png │ │ ├── ic_launcher_patron_round_foreground.png │ │ ├── ic_launcher_pride.png │ │ ├── ic_launcher_pride_background.png │ │ ├── ic_launcher_pride_foreground.png │ │ ├── ic_launcher_radioactive.png │ │ ├── ic_launcher_radioactive_background.png │ │ ├── ic_launcher_radioactive_foreground.png │ │ ├── ic_launcher_radioactive_round.png │ │ ├── ic_launcher_redvelvet.png │ │ ├── ic_launcher_redvelvet_background.png │ │ ├── ic_launcher_redvelvet_foreground.png │ │ ├── ic_launcher_redvelvet_round.png │ │ ├── ic_launcher_rose.png │ │ ├── ic_launcher_rose_round.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── appicon_background.png │ │ ├── appicon_foreground.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_1.png │ │ ├── ic_launcher_1_round.png │ │ ├── ic_launcher_2.png │ │ ├── ic_launcher_2_foreground.png │ │ ├── ic_launcher_2_round.png │ │ ├── ic_launcher_3.png │ │ ├── ic_launcher_3_background.png │ │ ├── ic_launcher_3_foreground.png │ │ ├── ic_launcher_3_round.png │ │ ├── ic_launcher_4.png │ │ ├── ic_launcher_4_background.png │ │ ├── ic_launcher_4_foreground.png │ │ ├── ic_launcher_4_round.png │ │ ├── ic_launcher_5.png │ │ ├── ic_launcher_5_background.png │ │ ├── ic_launcher_5_foreground.png │ │ ├── ic_launcher_6.png │ │ ├── ic_launcher_6_background.png │ │ ├── ic_launcher_6_foreground.png │ │ ├── ic_launcher_6_round.png │ │ ├── ic_launcher_7.png │ │ ├── ic_launcher_7_background.png │ │ ├── ic_launcher_7_foreground.png │ │ ├── ic_launcher_7_round.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_cat.png │ │ ├── ic_launcher_cat_foreground.png │ │ ├── ic_launcher_cat_round.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_halloween.png │ │ ├── ic_launcher_halloween_background.png │ │ ├── ic_launcher_halloween_foreground.png │ │ ├── ic_launcher_halloween_round.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_indigo_background.png │ │ ├── ic_launcher_indigo_foreground.png │ │ ├── ic_launcher_indigo_round.png │ │ ├── ic_launcher_patron_chrome.png │ │ ├── ic_launcher_patron_chrome_background.png │ │ ├── ic_launcher_patron_chrome_foreground.png │ │ ├── ic_launcher_patron_dark.png │ │ ├── ic_launcher_patron_dark_background.png │ │ ├── ic_launcher_patron_dark_foreground.png │ │ ├── ic_launcher_patron_glow.png │ │ ├── ic_launcher_patron_glow_background.png │ │ ├── ic_launcher_patron_glow_foreground.png │ │ ├── ic_launcher_patron_round.png │ │ ├── ic_launcher_patron_round_background.png │ │ ├── ic_launcher_patron_round_foreground.png │ │ ├── ic_launcher_pride.png │ │ ├── ic_launcher_pride_background.png │ │ ├── ic_launcher_pride_foreground.png │ │ ├── ic_launcher_radioactive.png │ │ ├── ic_launcher_radioactive_background.png │ │ ├── ic_launcher_radioactive_foreground.png │ │ ├── ic_launcher_radioactive_round.png │ │ ├── ic_launcher_redvelvet.png │ │ ├── ic_launcher_redvelvet_background.png │ │ ├── ic_launcher_redvelvet_foreground.png │ │ ├── ic_launcher_redvelvet_round.png │ │ ├── ic_launcher_rose.png │ │ ├── ic_launcher_rose_round.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── confetti.json │ │ └── nowplaying.json │ │ └── values │ │ ├── ic_launcher_2_background.xml │ │ └── ic_launcher_cat_background.xml │ ├── localization │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ └── Roboto-Regular.ttf │ │ ├── java │ │ │ └── au │ │ │ │ └── com │ │ │ │ └── shiftyjelly │ │ │ │ └── pocketcasts │ │ │ │ └── localization │ │ │ │ ├── extensions │ │ │ │ └── Resources.kt │ │ │ │ └── helper │ │ │ │ ├── DurationUtil.kt │ │ │ │ ├── LocaliseHelper.kt │ │ │ │ ├── RelativeDateFormatter.kt │ │ │ │ ├── StatsHelper.kt │ │ │ │ ├── TimeHelper.kt │ │ │ │ └── TimeLeft.kt │ │ └── res │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ └── strings.xml │ │ │ ├── values-es-rMX │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-fr-rCA │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-large-land │ │ │ └── dimens.xml │ │ │ ├── values-large │ │ │ └── dimens.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values-zh │ │ │ └── strings.xml │ │ │ ├── values │ │ │ ├── available_languages.xml │ │ │ ├── preferences_auto_archive_played.xml │ │ │ └── strings.xml │ │ │ └── xml │ │ │ ├── allowed_media_browser_callers.xml │ │ │ └── file_paths.xml │ │ └── release │ │ └── res │ │ └── xml │ │ ├── backup_scheme.xml │ │ └── extraction_rules.xml │ ├── media-noop │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── media │ │ ├── MediaModule.kt │ │ └── NoOpMediaService.kt │ ├── model │ ├── build.gradle.kts │ ├── schemas │ │ └── au.com.shiftyjelly.pocketcasts.models.db.AppDatabase │ │ │ ├── 100.json │ │ │ ├── 101.json │ │ │ ├── 102.json │ │ │ ├── 103.json │ │ │ ├── 104.json │ │ │ ├── 105.json │ │ │ ├── 106.json │ │ │ ├── 107.json │ │ │ ├── 108.json │ │ │ ├── 109.json │ │ │ ├── 110.json │ │ │ ├── 111.json │ │ │ ├── 112.json │ │ │ ├── 113.json │ │ │ ├── 114.json │ │ │ ├── 115.json │ │ │ ├── 116.json │ │ │ ├── 117.json │ │ │ ├── 118.json │ │ │ ├── 119.json │ │ │ ├── 120.json │ │ │ ├── 121.json │ │ │ ├── 122.json │ │ │ ├── 123.json │ │ │ ├── 46.json │ │ │ ├── 47.json │ │ │ ├── 48.json │ │ │ ├── 49.json │ │ │ ├── 50.json │ │ │ ├── 51.json │ │ │ ├── 52.json │ │ │ ├── 53.json │ │ │ ├── 54.json │ │ │ ├── 55.json │ │ │ ├── 56.json │ │ │ ├── 57.json │ │ │ ├── 58.json │ │ │ ├── 59.json │ │ │ ├── 60.json │ │ │ ├── 61.json │ │ │ ├── 62.json │ │ │ ├── 63.json │ │ │ ├── 64.json │ │ │ ├── 65.json │ │ │ ├── 66.json │ │ │ ├── 67.json │ │ │ ├── 68.json │ │ │ ├── 69.json │ │ │ ├── 70.json │ │ │ ├── 71.json │ │ │ ├── 72.json │ │ │ ├── 73.json │ │ │ ├── 74.json │ │ │ ├── 75.json │ │ │ ├── 76.json │ │ │ ├── 77.json │ │ │ ├── 78.json │ │ │ ├── 79.json │ │ │ ├── 80.json │ │ │ ├── 81.json │ │ │ ├── 82.json │ │ │ ├── 83.json │ │ │ ├── 84.json │ │ │ ├── 85.json │ │ │ ├── 86.json │ │ │ ├── 87.json │ │ │ ├── 88.json │ │ │ ├── 89.json │ │ │ ├── 90.json │ │ │ ├── 91.json │ │ │ ├── 92.json │ │ │ ├── 93.json │ │ │ ├── 94.json │ │ │ ├── 95.json │ │ │ ├── 96.json │ │ │ ├── 97.json │ │ │ ├── 98.json │ │ │ └── 99.json │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── models │ │ │ ├── converter │ │ │ ├── AutoArchiveAfterPlayingTypeConverter.kt │ │ │ ├── AutoArchiveInactiveTypeConverter.kt │ │ │ ├── AutoArchiveLimitTypeConverter.kt │ │ │ ├── BlazeAdLocationConverter.kt │ │ │ ├── BundlePaidTypeConverter.kt │ │ │ ├── ChapterIndicesConverter.kt │ │ │ ├── DateTypeConverter.kt │ │ │ ├── EpisodePlayingStatusConverter.kt │ │ │ ├── EpisodeStatusEnumConverter.kt │ │ │ ├── EpisodesSortTypeConverter.kt │ │ │ ├── InstantConverter.kt │ │ │ ├── PlaylistEpisodeSortTypeConverter.kt │ │ │ ├── PodcastAutoUpNextConverter.kt │ │ │ ├── PodcastGroupingTypeConverter.kt │ │ │ ├── PodcastLicensingEnumConverter.kt │ │ │ ├── PodcastsSortTypeConverter.kt │ │ │ ├── SyncStatusConverter.kt │ │ │ ├── TranscriptJsonConverter.kt │ │ │ ├── TrimModeTypeConverter.kt │ │ │ └── UserEpisodeServerStatusConverter.kt │ │ │ ├── db │ │ │ ├── AppDatabase.kt │ │ │ ├── dao │ │ │ │ ├── BlazeAdDao.kt │ │ │ │ ├── BookmarkDao.kt │ │ │ │ ├── BumpStatsDao.kt │ │ │ │ ├── ChapterDao.kt │ │ │ │ ├── EndOfYearDao.kt │ │ │ │ ├── EpisodeDao.kt │ │ │ │ ├── ExternalDataDao.kt │ │ │ │ ├── FolderDao.kt │ │ │ │ ├── PlaylistDao.kt │ │ │ │ ├── PodcastDao.kt │ │ │ │ ├── PodcastRatingsDao.kt │ │ │ │ ├── SearchHistoryDao.kt │ │ │ │ ├── SuggestedFoldersDao.kt │ │ │ │ ├── TranscriptDao.kt │ │ │ │ ├── UpNextChangeDao.kt │ │ │ │ ├── UpNextDao.kt │ │ │ │ ├── UpNextHistoryDao.kt │ │ │ │ ├── UserCategoryVisitsDao.kt │ │ │ │ ├── UserEpisodeDao.kt │ │ │ │ └── UserNotificationsDao.kt │ │ │ └── helper │ │ │ │ ├── PodcastBookmark.kt │ │ │ │ ├── ProfileBookmark.kt │ │ │ │ ├── QueryHelper.kt │ │ │ │ └── UuidCount.kt │ │ │ ├── di │ │ │ └── ModelModule.kt │ │ │ ├── entity │ │ │ ├── AnonymousBumpStat.kt │ │ │ ├── BaseEpisode.kt │ │ │ ├── BlazeAd.kt │ │ │ ├── Bookmark.kt │ │ │ ├── ChapterIndices.kt │ │ │ ├── CuratedPodcast.kt │ │ │ ├── EpisodeDownloadFailureStatistics.kt │ │ │ ├── ExternalEntities.kt │ │ │ ├── Folder.kt │ │ │ ├── ManualPlaylistEpisode.kt │ │ │ ├── ManualPlaylistEpisodeSource.kt │ │ │ ├── PlaylistEntity.kt │ │ │ ├── Podcast.kt │ │ │ ├── PodcastEpisode.kt │ │ │ ├── PodcastRatings.kt │ │ │ ├── SearchHistoryItem.kt │ │ │ ├── SuggestedFolder.kt │ │ │ ├── Transcript.kt │ │ │ ├── UpNextChange.kt │ │ │ ├── UpNextEpisode.kt │ │ │ ├── UpNextHistory.kt │ │ │ ├── UpNextHistoryEntry.kt │ │ │ ├── UserCategoryVisits.kt │ │ │ ├── UserEpisode.kt │ │ │ ├── UserNotifications.kt │ │ │ └── UserPodcastRating.kt │ │ │ ├── to │ │ │ ├── AutoArchiveAfterPlaying.kt │ │ │ ├── AutoArchiveInactive.kt │ │ │ ├── AutoArchiveLimit.kt │ │ │ ├── Bundle.kt │ │ │ ├── Chapter.kt │ │ │ ├── Chapters.kt │ │ │ ├── DbChapter.kt │ │ │ ├── EpisodeItem.kt │ │ │ ├── EpisodeWithTitle.kt │ │ │ ├── FolderItem.kt │ │ │ ├── HistorySyncRequest.kt │ │ │ ├── ImprovedSearchResultItem.kt │ │ │ ├── LongestEpisode.kt │ │ │ ├── PlaybackEffects.kt │ │ │ ├── PlaybackEffectsData.kt │ │ │ ├── PlaylistEpisode.kt │ │ │ ├── PlaylistEpisodeMetadata.kt │ │ │ ├── PlaylistIcon.kt │ │ │ ├── PlaylistPreviewForEpisode.kt │ │ │ ├── PlaylistShortcut.kt │ │ │ ├── PodcastFolder.kt │ │ │ ├── PodcastGrouping.kt │ │ │ ├── PodcastRatingGrouping.kt │ │ │ ├── RatingStats.kt │ │ │ ├── RefreshState.kt │ │ │ ├── SearchAutoCompleteItem.kt │ │ │ ├── SearchHistoryEntry.kt │ │ │ ├── Share.kt │ │ │ ├── StatsBundle.kt │ │ │ ├── Story.kt │ │ │ ├── TopPodcast.kt │ │ │ ├── Transcript.kt │ │ │ ├── TranscriptEntry.kt │ │ │ └── TranscriptType.kt │ │ │ └── type │ │ │ ├── AdReportReason.kt │ │ │ ├── AutoDownloadLimitSetting.kt │ │ │ ├── BlazeAdLocation.kt │ │ │ ├── EpisodePlayingStatus.kt │ │ │ ├── EpisodeStatusEnum.kt │ │ │ ├── EpisodeViewSource.kt │ │ │ ├── EpisodesSortType.kt │ │ │ ├── MembershipFeature.kt │ │ │ ├── PlaylistEpisodeSortType.kt │ │ │ ├── PodcastsSortType.kt │ │ │ ├── SignInState.kt │ │ │ ├── SmartRules.kt │ │ │ ├── Subscription.kt │ │ │ ├── SubscriptionPlatform.kt │ │ │ ├── SyncStatus.kt │ │ │ ├── TrimMode.kt │ │ │ ├── UpNextSortType.kt │ │ │ └── UserEpisodeServerStatus.kt │ │ └── test │ │ └── java │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── models │ │ ├── converter │ │ ├── AutoArchiveAfterPlayingTypeConverterTest.kt │ │ ├── AutoArchiveInactiveTypeConverterTest.kt │ │ ├── AutoArchiveLimitTypeConverterTest.kt │ │ ├── InstantConverterTest.kt │ │ ├── PodcastGroupingTypeConverterTest.kt │ │ └── SafeDateTypeConverterTest.kt │ │ ├── entity │ │ └── ChapterIndicesTest.kt │ │ ├── to │ │ ├── AutoArchiveAfterPlayingTest.kt │ │ ├── AutoArchiveInactiveTest.kt │ │ ├── ChapterTest.kt │ │ ├── ChaptersTest.kt │ │ └── RatingStatsTest.kt │ │ └── type │ │ ├── EpisodePlayingStatusTest.kt │ │ ├── MembershipTest.kt │ │ ├── PodcastsSortTypeTest.kt │ │ ├── SmartRulesTest.kt │ │ └── UpNextSortTypeTest.kt │ ├── payment │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── payment │ │ │ ├── Data.kt │ │ │ ├── FakePaymentDataSource.kt │ │ │ ├── PaymentClient.kt │ │ │ ├── PaymentDataSource.kt │ │ │ ├── PaymentResult.kt │ │ │ ├── PurchaseApprover.kt │ │ │ └── billing │ │ │ ├── BillingFlowRequest.kt │ │ │ ├── BillingPaymentDataSource.kt │ │ │ ├── BillingPaymentMapper.kt │ │ │ └── ClientConnection.kt │ │ └── test │ │ └── kotlin │ │ ├── au │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── payment │ │ │ ├── PaymentClientTest.kt │ │ │ ├── PaymentResultTest.kt │ │ │ ├── SubscriptionPlansTest.kt │ │ │ ├── TestListener.kt │ │ │ ├── TestPurchaseApprover.kt │ │ │ └── billing │ │ │ ├── BillingPaymentMapperFlowParamsTest.kt │ │ │ └── BillingPaymentMapperTest.kt │ │ └── com │ │ └── android │ │ └── billingclient │ │ └── api │ │ └── ProductDetails.kt │ ├── preferences │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── au │ │ │ │ └── com │ │ │ │ └── shiftyjelly │ │ │ │ └── pocketcasts │ │ │ │ └── preferences │ │ │ │ ├── AccountConstants.kt │ │ │ │ ├── NotificationSound.kt │ │ │ │ ├── Settings.kt │ │ │ │ ├── SettingsImpl.kt │ │ │ │ ├── UserSetting.kt │ │ │ │ ├── di │ │ │ │ └── PreferencesModule.kt │ │ │ │ └── model │ │ │ │ ├── AppIconSetting.kt │ │ │ │ ├── AppReviewReason.kt │ │ │ │ ├── ArtworkConfiguration.kt │ │ │ │ ├── AutoAddUpNextLimitBehaviour.kt │ │ │ │ ├── AutoPlaySource.kt │ │ │ │ ├── BadgeType.kt │ │ │ │ ├── BookmarksSortType.kt │ │ │ │ ├── BookmarksSortTypeDefault.kt │ │ │ │ ├── BookmarksSortTypeForPodcast.kt │ │ │ │ ├── BookmarksSortTypeForProfile.kt │ │ │ │ ├── HeadphoneAction.kt │ │ │ │ ├── NewEpisodeNotificationAction.kt │ │ │ │ ├── NotificationVibrateSetting.kt │ │ │ │ ├── PlayOverNotificationSetting.kt │ │ │ │ ├── PodcastGridLayoutType.kt │ │ │ │ ├── SelectedPlaylist.kt │ │ │ │ ├── ShelfRowItem.kt │ │ │ │ └── ThemeSetting.kt │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ └── test │ │ └── kotlin │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── preferences │ │ └── model │ │ ├── ArtworkConfigurationTest.kt │ │ └── AutoPlaySourceTest.kt │ ├── protobuf │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── proto │ │ └── sync_api.proto │ ├── repositories │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── au │ │ │ │ └── com │ │ │ │ └── shiftyjelly │ │ │ │ └── pocketcasts │ │ │ │ └── repositories │ │ │ │ ├── ads │ │ │ │ ├── BlazeAdsManager.kt │ │ │ │ └── BlazeAdsManagerImpl.kt │ │ │ │ ├── appreview │ │ │ │ ├── AppReviewAnalyticsListener.kt │ │ │ │ ├── AppReviewExceptionHandler.kt │ │ │ │ ├── AppReviewManager.kt │ │ │ │ └── AppReviewManagerImpl.kt │ │ │ │ ├── bookmark │ │ │ │ ├── BookmarkHelper.kt │ │ │ │ ├── BookmarkManager.kt │ │ │ │ └── BookmarkManagerImpl.kt │ │ │ │ ├── bumpstats │ │ │ │ └── BumpStatsTask.kt │ │ │ │ ├── categories │ │ │ │ └── CategoriesManager.kt │ │ │ │ ├── chromecast │ │ │ │ ├── CastManager.kt │ │ │ │ ├── CastManagerImpl.kt │ │ │ │ └── ChromeCastAnalytics.kt │ │ │ │ ├── colors │ │ │ │ └── ColorManager.kt │ │ │ │ ├── di │ │ │ │ ├── Annotations.kt │ │ │ │ ├── CastsWorkerFactory.kt │ │ │ │ ├── DispatcherModule.kt │ │ │ │ ├── InitializerEntryPoint.kt │ │ │ │ ├── NotificationPermissionChecker.kt │ │ │ │ ├── RepositoryModule.kt │ │ │ │ ├── RepositoryProviderModule.kt │ │ │ │ └── TranscriptTypeKey.kt │ │ │ │ ├── download │ │ │ │ ├── DownloadHelper.kt │ │ │ │ ├── DownloadManager.kt │ │ │ │ ├── DownloadManagerImpl.kt │ │ │ │ ├── DownloadProgressUpdate.kt │ │ │ │ ├── DownloadResult.kt │ │ │ │ ├── FixDownloadsWorker.kt │ │ │ │ ├── NetworkRequirements.kt │ │ │ │ ├── ResponseValidationResult.kt │ │ │ │ ├── UpdateEpisodeDetailsJob.kt │ │ │ │ ├── UpdateEpisodeDetailsTask.kt │ │ │ │ └── task │ │ │ │ │ ├── DownloadEpisodeTask.kt │ │ │ │ │ ├── UpdateEpisodeTask.kt │ │ │ │ │ ├── UpdateShowNotesTask.kt │ │ │ │ │ └── UploadEpisodeTask.kt │ │ │ │ ├── endofyear │ │ │ │ ├── EndOfYearManager.kt │ │ │ │ ├── EndOfYearManagerImpl.kt │ │ │ │ ├── EndOfYearStats.kt │ │ │ │ └── EndOfYearSyncImpl.kt │ │ │ │ ├── extensions │ │ │ │ ├── Folder.kt │ │ │ │ ├── MediaMetadataCompatExt.kt │ │ │ │ ├── Playable.kt │ │ │ │ ├── PlaybackStateCompatExt.kt │ │ │ │ ├── Playlist.kt │ │ │ │ ├── Podcast.kt │ │ │ │ └── UserEpisode.kt │ │ │ │ ├── external │ │ │ │ ├── ExternalDataManager.kt │ │ │ │ └── ExternalDataManagerImpl.kt │ │ │ │ ├── file │ │ │ │ ├── CloudFilesManager.kt │ │ │ │ ├── FileStorage.kt │ │ │ │ ├── FolderLocation.kt │ │ │ │ ├── StorageException.kt │ │ │ │ └── StorageOptions.kt │ │ │ │ ├── history │ │ │ │ └── upnext │ │ │ │ │ ├── UpNextHistoryManager.kt │ │ │ │ │ └── UpNextHistoryManagerImpl.kt │ │ │ │ ├── images │ │ │ │ ├── PocketCastsImageRequestFactory.kt │ │ │ │ ├── PodcastImage.kt │ │ │ │ └── PodcastImageColorAnalyzer.kt │ │ │ │ ├── jobs │ │ │ │ ├── EpisodeTitlesNormalizationWorker.kt │ │ │ │ └── VersionMigrationsWorker.kt │ │ │ │ ├── lists │ │ │ │ └── ListRepository.kt │ │ │ │ ├── notification │ │ │ │ ├── NotificationDelayCalculator.kt │ │ │ │ ├── NotificationDrawer.kt │ │ │ │ ├── NotificationDrawerImpl.kt │ │ │ │ ├── NotificationHelper.kt │ │ │ │ ├── NotificationHelperImpl.kt │ │ │ │ ├── NotificationManager.kt │ │ │ │ ├── NotificationManagerImpl.kt │ │ │ │ ├── NotificationOpenReceiverActivity.kt │ │ │ │ ├── NotificationScheduler.kt │ │ │ │ ├── NotificationSchedulerImpl.kt │ │ │ │ ├── NotificationType.kt │ │ │ │ └── NotificationWorker.kt │ │ │ │ ├── opml │ │ │ │ ├── OpmlImportTask.kt │ │ │ │ └── OpmlUrlReader.kt │ │ │ │ ├── payment │ │ │ │ ├── AnalyticsPaymentListener.kt │ │ │ │ └── LoggingPaymentListener.kt │ │ │ │ ├── playback │ │ │ │ ├── AudioNoisyManager.kt │ │ │ │ ├── AutoPlaySelector.kt │ │ │ │ ├── CacheWorker.kt │ │ │ │ ├── CastPlayer.kt │ │ │ │ ├── EpisodeFileMetadata.kt │ │ │ │ ├── ExoPlayerDataSourceFactory.kt │ │ │ │ ├── FocusManager.kt │ │ │ │ ├── LocalPlayer.kt │ │ │ │ ├── MediaEventQueue.kt │ │ │ │ ├── MediaSessionManager.kt │ │ │ │ ├── NetworkConnectionWatcher.kt │ │ │ │ ├── PlayAllHandler.kt │ │ │ │ ├── PlaybackManager.kt │ │ │ │ ├── PlaybackManagerNetworkWatcher.kt │ │ │ │ ├── PlaybackService.kt │ │ │ │ ├── PlaybackState.kt │ │ │ │ ├── Player.kt │ │ │ │ ├── PlayerBroadcastReceiver.kt │ │ │ │ ├── PlayerEvent.kt │ │ │ │ ├── PlayerFactory.kt │ │ │ │ ├── PlayerFactoryImpl.kt │ │ │ │ ├── PlayerNotificationManager.kt │ │ │ │ ├── PlayerVolumeFadeOut.kt │ │ │ │ ├── ResumptionHelper.kt │ │ │ │ ├── ShiftyAudioProcessorChain.kt │ │ │ │ ├── ShiftyAudioRendererV2.kt │ │ │ │ ├── ShiftyCustomAudio.kt │ │ │ │ ├── ShiftyRenderersFactory.kt │ │ │ │ ├── ShiftyTrimSilenceProcessor.kt │ │ │ │ ├── SimplePlayer.kt │ │ │ │ ├── SleepTimer.kt │ │ │ │ ├── SleepTimerRestartWhenShakingDevice.kt │ │ │ │ ├── SleepTimerState.kt │ │ │ │ ├── UpNextPosition.kt │ │ │ │ ├── UpNextQueue.kt │ │ │ │ ├── UpNextQueueImpl.kt │ │ │ │ └── auto │ │ │ │ │ ├── AlbumArtContentProvider.kt │ │ │ │ │ ├── AutoConverter.kt │ │ │ │ │ ├── FileConverter.kt │ │ │ │ │ └── PackageValidator.kt │ │ │ │ ├── playlist │ │ │ │ ├── DefaultPlaylistsInitializer.kt │ │ │ │ ├── DefaultPlaylistsStartupInitializer.kt │ │ │ │ ├── Playlist.kt │ │ │ │ ├── PlaylistInteractionNotifier.kt │ │ │ │ ├── PlaylistManager.kt │ │ │ │ ├── PlaylistManagerImpl.kt │ │ │ │ ├── PlaylistPreview.kt │ │ │ │ └── SmartPlaylistDraft.kt │ │ │ │ ├── podcast │ │ │ │ ├── ChapterManager.kt │ │ │ │ ├── ChapterManagerImpl.kt │ │ │ │ ├── EpisodeManager.kt │ │ │ │ ├── EpisodeManagerImpl.kt │ │ │ │ ├── EpisodeRowData.kt │ │ │ │ ├── FolderManager.kt │ │ │ │ ├── FolderManagerImpl.kt │ │ │ │ ├── HistoryManager.kt │ │ │ │ ├── ImageUrlUpdate.kt │ │ │ │ ├── PlaylistProperty.kt │ │ │ │ ├── PlaylistUpdateSource.kt │ │ │ │ ├── PodcastManager.kt │ │ │ │ ├── PodcastManagerImpl.kt │ │ │ │ ├── SubscribeManager.kt │ │ │ │ ├── SuggestedFoldersManager.kt │ │ │ │ ├── UserEpisodeManager.kt │ │ │ │ └── UserPlaylistUpdate.kt │ │ │ │ ├── ratings │ │ │ │ ├── RatingsManager.kt │ │ │ │ └── RatingsManagerImpl.kt │ │ │ │ ├── referrals │ │ │ │ ├── ReferralManager.kt │ │ │ │ └── ReferralManagerImpl.kt │ │ │ │ ├── refresh │ │ │ │ ├── RefreshPodcastsJob.kt │ │ │ │ ├── RefreshPodcastsTask.kt │ │ │ │ └── RefreshPodcastsThread.kt │ │ │ │ ├── search │ │ │ │ ├── ImprovedSearchManager.kt │ │ │ │ └── ImprovedSearchManagerImpl.kt │ │ │ │ ├── searchhistory │ │ │ │ ├── SearchHistoryManager.kt │ │ │ │ └── SearchHistoryManagerImpl.kt │ │ │ │ ├── shortcuts │ │ │ │ └── DynamicShortcutsSynchronizer.kt │ │ │ │ ├── shownotes │ │ │ │ ├── ShowNotesManager.kt │ │ │ │ └── ShowNotesProcessor.kt │ │ │ │ ├── subscription │ │ │ │ ├── ServerPurchaseApprover.kt │ │ │ │ ├── SubscriptionManager.kt │ │ │ │ └── SubscriptionManagerImpl.kt │ │ │ │ ├── support │ │ │ │ ├── DatabaseExportHelper.kt │ │ │ │ └── Support.kt │ │ │ │ ├── sync │ │ │ │ ├── AccountManagerStatusInfo.kt │ │ │ │ ├── LoginResult.kt │ │ │ │ ├── NotificationBroadcastReceiver.kt │ │ │ │ ├── PocketCastsSyncException.kt │ │ │ │ ├── PodcastRefresher.kt │ │ │ │ ├── PodcastRefresherImpl.kt │ │ │ │ ├── SyncAccountManager.kt │ │ │ │ ├── SyncAccountManagerImpl.kt │ │ │ │ ├── SyncHistoryTask.kt │ │ │ │ ├── SyncManager.kt │ │ │ │ ├── SyncManagerImpl.kt │ │ │ │ ├── TokenErrorNotification.kt │ │ │ │ ├── UpNextSyncWorker.kt │ │ │ │ └── data │ │ │ │ │ ├── BookmarkSync.kt │ │ │ │ │ ├── DataSyncProcess.kt │ │ │ │ │ ├── DeviceSync.kt │ │ │ │ │ ├── EpisodeSync.kt │ │ │ │ │ ├── FoldersSync.kt │ │ │ │ │ ├── MissingEpisodesSync.kt │ │ │ │ │ ├── PlaylistSync.kt │ │ │ │ │ └── PodcastSync.kt │ │ │ │ ├── transcript │ │ │ │ ├── TranscripSanitization.kt │ │ │ │ ├── TranscriptManager.kt │ │ │ │ ├── TranscriptManagerImpl.kt │ │ │ │ └── TranscriptParser.kt │ │ │ │ └── user │ │ │ │ ├── ObserveTrackableUser.kt │ │ │ │ ├── StatsManager.kt │ │ │ │ ├── StatsManagerImpl.kt │ │ │ │ ├── UserManager.kt │ │ │ │ └── UserSettingsCrashReportPermission.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_delete_black.xml │ │ │ ├── raw │ │ │ ├── bookmark_creation_sound.wav │ │ │ └── sleep_time_device_shake_confirmation_sound.wav │ │ │ └── values │ │ │ └── colors.xml │ │ └── test │ │ └── java │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── repositories │ │ ├── appreview │ │ ├── AppReviewAnalyticsListenerTest.kt │ │ ├── AppReviewManagerTest.kt │ │ └── TestSetting.kt │ │ ├── categories │ │ └── CategoriesManagerTest.kt │ │ ├── history │ │ └── upnext │ │ │ └── UpNextHistoryManagerImplTest.kt │ │ ├── notification │ │ ├── NotificationDelayCalculatorTest.kt │ │ └── NotificationManagerTest.kt │ │ ├── opml │ │ └── OpmlUrlReaderTest.kt │ │ ├── payment │ │ └── AnalyticsPaymentListenerTest.kt │ │ ├── playback │ │ ├── MediaEventQueueTest.kt │ │ └── PlaybackManagerNetworkWatcherTest.kt │ │ ├── podcast │ │ ├── ChapterManagerImplTest.kt │ │ ├── EpisodeManagerImplTest.kt │ │ └── UserEpisodeManagerImplTest.kt │ │ ├── referrals │ │ └── ReferralManagerImplTest.kt │ │ ├── shownotes │ │ └── ShowNotesProcessTest.kt │ │ ├── support │ │ └── DatabaseExportHelperTest.kt │ │ ├── sync │ │ ├── AccountManagerStatusInfoTest.kt │ │ └── SyncManagerImplTest.kt │ │ ├── transcript │ │ ├── HtmlParserTest.kt │ │ ├── JsonParserTest.kt │ │ ├── SrtParserTest.kt │ │ ├── TranscriptManagerTest.kt │ │ ├── TranscriptSanitizationTest.kt │ │ └── WebVttParserTest.kt │ │ └── user │ │ └── ObserveTrackableUserTest.kt │ ├── servers │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── servers │ │ │ ├── ApiTokenRequest.kt │ │ │ ├── ApiTokenResponse.kt │ │ │ ├── CleanAndRetryInterceptor.kt │ │ │ ├── DataParser.kt │ │ │ ├── Interceptors.kt │ │ │ ├── PostCallback.kt │ │ │ ├── RefreshResponse.kt │ │ │ ├── ServerCallback.kt │ │ │ ├── ServerFailure.kt │ │ │ ├── ServerResponse.kt │ │ │ ├── ServerResponseException.kt │ │ │ ├── ServiceManager.kt │ │ │ ├── ShowNotesServiceManager.kt │ │ │ ├── adapters │ │ │ └── InstantAdapter.kt │ │ │ ├── bumpstats │ │ │ ├── AnonymousBumpStatsRequest.kt │ │ │ ├── WpComService.kt │ │ │ └── WpComServiceManager.kt │ │ │ ├── cdn │ │ │ ├── ArtworkColors.kt │ │ │ ├── BlazeAdsResponse.kt │ │ │ ├── ColorsResponse.kt │ │ │ ├── StaticService.kt │ │ │ ├── StaticServiceManager.kt │ │ │ └── StaticServiceManagerImpl.kt │ │ │ ├── di │ │ │ ├── InterceptorModule.kt │ │ │ ├── ServersModule.kt │ │ │ └── ServersModuleBinds.kt │ │ │ ├── discover │ │ │ ├── EpisodeSearch.kt │ │ │ ├── GlobalServerSearch.kt │ │ │ └── PodcastSearch.kt │ │ │ ├── extensions │ │ │ └── Timestamp.kt │ │ │ ├── interceptors │ │ │ ├── BasicAuthInterceptor.kt │ │ │ └── InternationalizationInterceptor.kt │ │ │ ├── list │ │ │ ├── ListDownloadService.kt │ │ │ ├── ListServiceManager.kt │ │ │ ├── ListServiceManagerImpl.kt │ │ │ ├── ListUploadResponse.kt │ │ │ ├── ListUploadService.kt │ │ │ └── PodcastList.kt │ │ │ ├── model │ │ │ ├── AuthResultModel.kt │ │ │ ├── DiscoverModel.kt │ │ │ ├── DisplayStyle.kt │ │ │ ├── ExpandedStyle.kt │ │ │ └── ListType.kt │ │ │ ├── podcast │ │ │ ├── PodcastCacheService.kt │ │ │ ├── PodcastCacheServiceManager.kt │ │ │ ├── PodcastCacheServiceManagerImpl.kt │ │ │ ├── PodcastResponse.kt │ │ │ ├── ShowNotesResponse.kt │ │ │ └── TranscriptService.kt │ │ │ ├── refresh │ │ │ ├── BaseRequest.kt │ │ │ ├── BasicResponse.kt │ │ │ ├── ImportOpmlRequest.kt │ │ │ ├── ImportOpmlResponse.kt │ │ │ ├── RefreshPodcastBatcher.kt │ │ │ ├── RefreshService.kt │ │ │ ├── RefreshServiceManager.kt │ │ │ ├── RefreshServiceManagerImpl.kt │ │ │ └── StatusResponse.kt │ │ │ ├── search │ │ │ ├── AutoCompleteResponse.kt │ │ │ ├── AutoCompleteSearchService.kt │ │ │ ├── CombinedSearchRequest.kt │ │ │ └── CombinedSearchResponse.kt │ │ │ ├── server │ │ │ ├── ListWebService.kt │ │ │ └── ResponsePodcasts.kt │ │ │ ├── shownotes │ │ │ └── ShowNotesState.kt │ │ │ └── sync │ │ │ ├── BasicRequest.kt │ │ │ ├── EmailChangeRequest.kt │ │ │ ├── EpisodeSyncRequest.kt │ │ │ ├── FilesModel.kt │ │ │ ├── FilterListResponse.kt │ │ │ ├── HttpExceptionMessage.kt │ │ │ ├── LastSyncAtResponse.kt │ │ │ ├── LoginIdentity.kt │ │ │ ├── NamedSettings.kt │ │ │ ├── PodcastEpisodesRequest.kt │ │ │ ├── PodcastEpisodesResponse.kt │ │ │ ├── ProgressRequestBody.kt │ │ │ ├── PromoCodeResponse.kt │ │ │ ├── StatsSummaryRequest.kt │ │ │ ├── SubscriptionModel.kt │ │ │ ├── SubscriptionPurchaseRequest.kt │ │ │ ├── SyncService.kt │ │ │ ├── SyncServiceManager.kt │ │ │ ├── SyncSettingsTask.kt │ │ │ ├── TokenHandler.kt │ │ │ ├── UpNextSyncRequest.kt │ │ │ ├── UpNextSyncResponse.kt │ │ │ ├── UpdatePasswordRequest.kt │ │ │ ├── UserChangeResponse.kt │ │ │ ├── bookmark │ │ │ └── Bookmark.kt │ │ │ ├── exception │ │ │ └── RefreshTokenExpiredException.kt │ │ │ ├── forgotpassword │ │ │ ├── ForgotPasswordRequest.kt │ │ │ └── ForgotPasswordResponse.kt │ │ │ ├── history │ │ │ ├── HistoryYearResponse.kt │ │ │ └── HistoryYearSyncRequest.kt │ │ │ ├── login │ │ │ ├── ExchangeSonosResponse.kt │ │ │ ├── LoginGoogleRequest.kt │ │ │ ├── LoginPocketCastsRequest.kt │ │ │ ├── LoginRequest.kt │ │ │ ├── LoginResponse.kt │ │ │ ├── LoginTokenRequest.kt │ │ │ └── LoginTokenResponse.kt │ │ │ └── register │ │ │ ├── RegisterRequest.kt │ │ │ └── RegisterResponse.kt │ │ └── test │ │ └── kotlin │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── servers │ │ ├── CleanAndRetryInterceptorTest.kt │ │ ├── RefreshResponseTest.kt │ │ ├── interceptors │ │ ├── BasicAuthInterceptorTest.kt │ │ └── InternationalizationInterceptorTest.kt │ │ └── refresh │ │ └── RefreshPodcastBatcherTest.kt │ ├── sharedtest │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── sharedtest │ │ ├── FakeCrashLogging.kt │ │ ├── InMemoryFeatureFlagRule.kt │ │ ├── InMemoryFeatureProvider.kt │ │ ├── MainCoroutineRule.kt │ │ └── MutableClock.kt │ ├── sharing │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── sharing │ │ │ ├── CardType.kt │ │ │ ├── Clip.kt │ │ │ ├── ItemSharedReceiver.kt │ │ │ ├── MediaService.kt │ │ │ ├── ShareStarter.kt │ │ │ ├── SharingAnalytics.kt │ │ │ ├── SharingClient.kt │ │ │ ├── SharingLogger.kt │ │ │ ├── SharingModule.kt │ │ │ ├── SocialPlatform.kt │ │ │ └── TimestampType.kt │ │ └── test │ │ └── kotlin │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── sharing │ │ ├── ClipRangeTest.kt │ │ ├── SharingAnalyticsTest.kt │ │ └── SocialPlatformTest.kt │ ├── ui │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── ui │ │ │ ├── di │ │ │ └── UiModule.kt │ │ │ ├── extensions │ │ │ ├── Configuration.kt │ │ │ ├── Context.kt │ │ │ ├── Folder.kt │ │ │ ├── Fragment.kt │ │ │ ├── Playlist.kt │ │ │ └── PocketCastsImageRequestFactory.kt │ │ │ ├── helper │ │ │ ├── AppIcon.kt │ │ │ ├── ColorUtils.kt │ │ │ ├── FragmentHostListener.kt │ │ │ ├── NavigationBarColor.kt │ │ │ ├── NavigationBarIconColor.kt │ │ │ └── StatusBarIconColor.kt │ │ │ ├── images │ │ │ ├── CoilManager.kt │ │ │ └── ThemedImageTintTransformation.kt │ │ │ ├── theme │ │ │ ├── Theme.kt │ │ │ ├── ThemeColor.kt │ │ │ └── ThemeStyle.kt │ │ │ └── worker │ │ │ └── RefreshArtworkWorker.kt │ │ └── res │ │ ├── color │ │ └── button_background_color.xml │ │ ├── drawable │ │ ├── bg_bottom_sheet_dialog_fragment_dark.xml │ │ ├── bg_bottom_sheet_dialog_fragment_light.xml │ │ ├── divider.xml │ │ ├── divider_indented.xml │ │ └── unplayed.xml │ │ ├── font │ │ ├── dm_sans.ttf │ │ └── roboto_serif.ttf │ │ ├── layout │ │ └── settings_pocketcasts_settings_fragment.xml │ │ ├── raw │ │ └── large_play_button.json │ │ ├── values-sw600dp │ │ └── dimens.xml │ │ ├── values-v27 │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── gradient_icon_attrs.xml │ │ ├── ids.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ └── xml │ │ ├── searchable.xml │ │ └── shortcuts.xml │ ├── utils │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── au │ │ │ └── com │ │ │ └── shiftyjelly │ │ │ └── pocketcasts │ │ │ └── utils │ │ │ ├── AppPlatform.kt │ │ │ ├── BitmapUtil.kt │ │ │ ├── ChainedExceptionHandler.kt │ │ │ ├── DateUtil.kt │ │ │ ├── Debouncer.kt │ │ │ ├── DeviceOrientationDetector.kt │ │ │ ├── DeviceStorageUtil.kt │ │ │ ├── DisplayUtil.kt │ │ │ ├── DurationUtil.kt │ │ │ ├── FileUtil.kt │ │ │ ├── FileUtilWrapper.kt │ │ │ ├── Gravatar.kt │ │ │ ├── IsTestingHelper.kt │ │ │ ├── LiveDataUtil.kt │ │ │ ├── LowStorageDetector.kt │ │ │ ├── Network.kt │ │ │ ├── NetworkWrapper.kt │ │ │ ├── NumberTimeExtension.kt │ │ │ ├── Optional.kt │ │ │ ├── PackageUtil.kt │ │ │ ├── Power.kt │ │ │ ├── RateUtil.kt │ │ │ ├── SchedulerProvider.kt │ │ │ ├── ScreenshotCaptureDetector.kt │ │ │ ├── SystemBatteryRestrictions.kt │ │ │ ├── TimberDebugTree.kt │ │ │ ├── UUIDProvider.kt │ │ │ ├── UUIDProviderImpl.kt │ │ │ ├── Util.kt │ │ │ ├── accessibility │ │ │ └── AccessibilityManager.kt │ │ │ ├── config │ │ │ └── FirebaseConfig.kt │ │ │ ├── coroutines │ │ │ ├── CachedAction.kt │ │ │ └── SyncedAction.kt │ │ │ ├── di │ │ │ ├── FirebaseModule.kt │ │ │ └── UtilsModule.kt │ │ │ ├── earlyaccess │ │ │ ├── EarlyAccessHelper.kt │ │ │ └── EarlyAccessStrings.kt │ │ │ ├── exception │ │ │ ├── EmptyDataException.kt │ │ │ ├── NoNetworkException.kt │ │ │ └── ParsingException.kt │ │ │ ├── extensions │ │ │ ├── AppBarLayout.kt │ │ │ ├── Bundle.kt │ │ │ ├── Context.kt │ │ │ ├── Date.kt │ │ │ ├── Double.kt │ │ │ ├── Flow.kt │ │ │ ├── GoogleApiAvailability.kt │ │ │ ├── Int.kt │ │ │ ├── List.kt │ │ │ ├── OkHttpSuspend.kt │ │ │ ├── SharedPreferences.kt │ │ │ ├── String.kt │ │ │ ├── Throwable.kt │ │ │ ├── WindowManager.kt │ │ │ └── Yaer.kt │ │ │ ├── featureflag │ │ │ ├── EarlyAccessState.kt │ │ │ ├── Feature.kt │ │ │ ├── FeatureFlag.kt │ │ │ ├── FeatureProvider.kt │ │ │ ├── ReleaseVersion.kt │ │ │ ├── ReleaseVersionWrapper.kt │ │ │ └── providers │ │ │ │ ├── DefaultReleaseFeatureProvider.kt │ │ │ │ ├── FirebaseRemoteFeatureProvider.kt │ │ │ │ └── PreferencesFeatureProvider.kt │ │ │ ├── log │ │ │ ├── LogBuffer.kt │ │ │ ├── LogBufferUncaughtExceptionHandler.kt │ │ │ └── RxJavaUncaughtExceptionHandling.kt │ │ │ ├── parceler │ │ │ ├── ColorParceler.kt │ │ │ └── DurationParceler.kt │ │ │ └── search │ │ │ ├── KmpSearch.kt │ │ │ ├── SearchCoordinates.kt │ │ │ └── SearchMatches.kt │ │ └── test │ │ └── java │ │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── utils │ │ ├── BitmapUtilTest.kt │ │ ├── DurationUtilTest.kt │ │ ├── FileUtilTest.kt │ │ ├── LowStorageDetectorTest.kt │ │ ├── UnidecodeTest.kt │ │ ├── coroutines │ │ ├── CachedActionTest.kt │ │ └── SyncedActionTest.kt │ │ ├── earlyaccess │ │ ├── EarlyAccessHelperTest.kt │ │ └── EarlyAccessStringsTest.kt │ │ ├── extensions │ │ ├── BundleTest.kt │ │ ├── FlowWindowedTest.kt │ │ └── ListTest.kt │ │ ├── featureflag │ │ ├── DoubleTest.kt │ │ ├── FeatureFlagTest.kt │ │ └── ReleaseVersionTest.kt │ │ └── search │ │ ├── KmpSearchTest.kt │ │ └── SearchMatchesTest.kt │ └── views │ ├── build.gradle.kts │ └── src │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ ├── au │ │ │ └── com │ │ │ │ └── shiftyjelly │ │ │ │ └── pocketcasts │ │ │ │ └── views │ │ │ │ ├── activity │ │ │ │ └── WebViewActivity.kt │ │ │ │ ├── adapter │ │ │ │ ├── FolderItemDiffCallback.kt │ │ │ │ └── LockableListAdapter.kt │ │ │ │ ├── buttons │ │ │ │ ├── AnimatedPlayButton.kt │ │ │ │ ├── PlayButton.kt │ │ │ │ └── PlayButtonType.kt │ │ │ │ ├── component │ │ │ │ ├── BottomNavigationView.kt │ │ │ │ ├── ButtonPreference.kt │ │ │ │ ├── DividerItemDecorator.kt │ │ │ │ ├── FileStatusIconsView.kt │ │ │ │ ├── GradientIcon.kt │ │ │ │ ├── IconCountBadge.kt │ │ │ │ ├── NavigationBarSpacer.kt │ │ │ │ ├── PagerIndicator.kt │ │ │ │ ├── ProgressCircleView.kt │ │ │ │ ├── RadioactiveLineView.kt │ │ │ │ ├── SelectablePanel.kt │ │ │ │ ├── SquareLayout.kt │ │ │ │ ├── StatusBarSpacer.kt │ │ │ │ └── TouchDetectionFrameLayout.kt │ │ │ │ ├── dialog │ │ │ │ ├── ConfirmationDialog.kt │ │ │ │ ├── OptionsDialog.kt │ │ │ │ └── ShareDialogFactory.kt │ │ │ │ ├── extensions │ │ │ │ ├── Activity.kt │ │ │ │ ├── DialogFragment.kt │ │ │ │ ├── EditText.kt │ │ │ │ ├── EditTextPreference.kt │ │ │ │ ├── MediaRouteButton.kt │ │ │ │ ├── Menu.kt │ │ │ │ ├── RecyclerView.kt │ │ │ │ ├── SearchView.kt │ │ │ │ ├── Spanned.kt │ │ │ │ ├── Springs.kt │ │ │ │ ├── SwitchExt.kt │ │ │ │ ├── Toolbar.kt │ │ │ │ ├── View.kt │ │ │ │ ├── ViewGroup.kt │ │ │ │ └── WebView.kt │ │ │ │ ├── fragments │ │ │ │ ├── BaseAppCompatDialogFragment.kt │ │ │ │ ├── BaseDialogFragment.kt │ │ │ │ ├── BaseFragment.kt │ │ │ │ ├── BaseFragmentToolbar.kt │ │ │ │ ├── BatteryRestrictionsSettingsFragment.kt │ │ │ │ ├── PodcastSelectFragment.kt │ │ │ │ └── TopScrollable.kt │ │ │ │ ├── helper │ │ │ │ ├── AnimatorUtil.kt │ │ │ │ ├── DelayedAction.kt │ │ │ │ ├── DeleteState.kt │ │ │ │ ├── HasBackstack.kt │ │ │ │ ├── IntentUtil.kt │ │ │ │ ├── MatchParentFrameLayout.kt │ │ │ │ ├── NavigationIcon.kt │ │ │ │ ├── OffsettingBottomSheetCallback.kt │ │ │ │ ├── OpmlExporter.kt │ │ │ │ ├── PlayButtonListener.kt │ │ │ │ ├── PlaylistHelper.kt │ │ │ │ ├── ShowNotesFormatter.kt │ │ │ │ ├── ShowNotesHelper.kt │ │ │ │ ├── ToolbarColors.kt │ │ │ │ ├── UiUtil.kt │ │ │ │ ├── ViewExtensions.kt │ │ │ │ └── WarningsHelper.kt │ │ │ │ ├── multiselect │ │ │ │ ├── MultiSelectAction.kt │ │ │ │ ├── MultiSelectAdapter.kt │ │ │ │ ├── MultiSelectBookmarkAction.kt │ │ │ │ ├── MultiSelectBookmarksHelper.kt │ │ │ │ ├── MultiSelectBottomSheet.kt │ │ │ │ ├── MultiSelectEpisodeAction.kt │ │ │ │ ├── MultiSelectEpisodesHelper.kt │ │ │ │ ├── MultiSelectFragment.kt │ │ │ │ ├── MultiSelectHelper.kt │ │ │ │ ├── MultiSelectToolbar.kt │ │ │ │ └── MultiSelectTouchCallback.kt │ │ │ │ ├── review │ │ │ │ └── InAppReviewHelper.kt │ │ │ │ ├── swipe │ │ │ │ ├── AddToPlaylistFragmentFactory.kt │ │ │ │ ├── SwipeAction.kt │ │ │ │ ├── SwipeActionViewModel.kt │ │ │ │ ├── SwipeButton.kt │ │ │ │ ├── SwipeRowActions.kt │ │ │ │ ├── SwipeRowLayout.kt │ │ │ │ └── SwipeSource.kt │ │ │ │ └── viewmodels │ │ │ │ └── PodcastSelectViewModel.kt │ │ └── com │ │ │ └── google │ │ │ └── android │ │ │ └── material │ │ │ └── bottomsheet │ │ │ └── ViewPager2AwareBottomSheetBehavior.kt │ └── res │ │ ├── color │ │ └── navigation_color.xml │ │ ├── drawable-hdpi │ │ ├── filter_circle.xml │ │ └── filter_icon_button_unselected.xml │ │ ├── drawable │ │ ├── background_dialog_fragment.xml │ │ ├── background_dragger.xml │ │ ├── background_dragger_player.xml │ │ ├── background_speed_label.xml │ │ ├── circle.xml │ │ ├── ic_delete.xml │ │ ├── ic_outline_info_24.xml │ │ ├── ic_search_black_24dp.xml │ │ ├── view_pager_indicator.xml │ │ ├── view_pager_indicator_default.xml │ │ └── view_pager_indicator_selected.xml │ │ ├── layout │ │ ├── activity_blank_fragment.xml │ │ ├── activity_web_view.xml │ │ ├── adapter_multiselect_item.xml │ │ ├── adapter_multiselect_title.xml │ │ ├── animated_play_button.xml │ │ ├── dialog_edit_text.xml │ │ ├── dialog_icon_grid_cell.xml │ │ ├── discover_podcast_adapter.xml │ │ ├── fragment_confirmation.xml │ │ ├── fragment_multiselect.xml │ │ ├── fragment_multiselect_bottom_sheet.xml │ │ ├── fragment_recyclerview.xml │ │ ├── layout_plus_callout.xml │ │ ├── list_incoming_footer.xml │ │ ├── list_incoming_header.xml │ │ ├── play_button.xml │ │ ├── preference_unsub_button.xml │ │ ├── settings_fragment_podcast_select.xml │ │ ├── settings_row_filter.xml │ │ ├── settings_row_podcast.xml │ │ ├── swipe_button.xml │ │ ├── swipe_row_layout.xml │ │ ├── view_download_banner.xml │ │ ├── view_file_status_icons.xml │ │ └── view_pager_indicator_dot.xml │ │ ├── menu │ │ ├── activity_login.xml │ │ ├── menu_multiselect.xml │ │ ├── menu_multiselect_upnext.xml │ │ ├── navigation.xml │ │ └── play_button.xml │ │ ├── values-sw350dp │ │ └── strings.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── component_attrs.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ └── strings.xml │ └── test │ └── java │ └── au │ └── com │ └── shiftyjelly │ └── pocketcasts │ └── views │ ├── swipe │ └── SwipeRowActionsFactoryTest.kt │ └── viewmodels │ └── PodcastSelectViewModelTest.kt ├── proguard-rules-no-obfuscate.pro ├── proguard-rules.pro ├── scripts ├── generate_themes_image.rb ├── git-hooks │ ├── install.gradle │ └── pre-commit.sh ├── outdated_dependencies.sh └── themes │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── download_themes.rb │ ├── generate_kotlin.rb │ ├── generate_kotlin_compose.rb │ ├── generate_xml.rb │ └── run.sh ├── settings.gradle.kts ├── version.properties └── wear ├── build.gradle.kts ├── lint-baseline.xml └── src ├── debug ├── google-services.json └── res │ └── values │ └── titles.xml ├── debugProd ├── google-services.json └── res │ └── values │ └── titles.xml ├── main ├── AndroidManifest.xml ├── kotlin │ └── au │ │ └── com │ │ └── shiftyjelly │ │ └── pocketcasts │ │ └── wear │ │ ├── MainActivity.kt │ │ ├── PocketCastsWearApplication.kt │ │ ├── WearMainActivityViewModel.kt │ │ ├── di │ │ ├── AuthWatchModule.kt │ │ ├── ConfigModule.kt │ │ ├── IsEmulator.kt │ │ ├── WearAppModule.kt │ │ └── WearNetworkModule.kt │ │ ├── networking │ │ └── PocketCastsNetworkingRules.kt │ │ ├── theme │ │ ├── WearAppTheme.kt │ │ └── WearColors.kt │ │ └── ui │ │ ├── AppConfig.kt │ │ ├── FilesScreen.kt │ │ ├── FilesViewModel.kt │ │ ├── LoggingInScreen.kt │ │ ├── LoggingInScreenViewModel.kt │ │ ├── NowPlayingChip.kt │ │ ├── NowPlayingChipViewModel.kt │ │ ├── ScrollToTop.kt │ │ ├── UpNextScreen.kt │ │ ├── UpNextViewModel.kt │ │ ├── WatchListScreen.kt │ │ ├── WatchListScreenViewModel.kt │ │ ├── authentication │ │ ├── AuthenticationNavGraph.kt │ │ ├── LegacyLoginWithGoogleScreen.kt │ │ ├── LegacyLoginWithGoogleScreenViewModel.kt │ │ ├── LoginScreen.kt │ │ ├── LoginViewModel.kt │ │ ├── LoginWithEmailScreen.kt │ │ ├── LoginWithGoogleScreen.kt │ │ ├── LoginWithGoogleViewModel.kt │ │ ├── LoginWithPhoneScreen.kt │ │ ├── RequirePlusScreen.kt │ │ └── RequirePlusViewModel.kt │ │ ├── component │ │ ├── ChipScreenHeaders.kt │ │ ├── EpisodeChip.kt │ │ ├── EpisodeChipViewModel.kt │ │ ├── ErrorScreen.kt │ │ ├── ExpandableText.kt │ │ ├── LoadingScreen.kt │ │ ├── LoadingSpinner.kt │ │ ├── MarqueeTextMediaDisplay.kt │ │ ├── NotificationScreen.kt │ │ ├── NowPlayingPager.kt │ │ ├── ObtainConfirmationScreen.kt │ │ ├── WatchListChip.kt │ │ └── horologist │ │ │ ├── ControlButtonLayoutStyled.kt │ │ │ ├── PauseButtonStyled.kt │ │ │ ├── PlayButtonStyled.kt │ │ │ ├── PlayPauseButtonStyled.kt │ │ │ ├── PlayPauseProgressButtonStyled.kt │ │ │ ├── PodcastControlButtonsStyled.kt │ │ │ ├── ProgressStateHolderStyled.kt │ │ │ ├── SeekForwardButtonStyled.kt │ │ │ └── SetVolumeButtonStyled.kt │ │ ├── downloads │ │ ├── DownloadsScreen.kt │ │ └── DownloadsScreenViewModel.kt │ │ ├── episode │ │ ├── DownloadButton.kt │ │ ├── EpisodeDateTimeText.kt │ │ ├── EpisodeScreen.kt │ │ ├── EpisodeScreenFlow.kt │ │ ├── EpisodeViewModel.kt │ │ ├── PlayButton.kt │ │ ├── QueueButton.kt │ │ └── UpNextOptionsScreen.kt │ │ ├── player │ │ ├── AudioOutputSelectorHelper.kt │ │ ├── EffectsScreen.kt │ │ ├── EffectsViewModel.kt │ │ ├── NowPlayingScreen.kt │ │ ├── NowPlayingViewModel.kt │ │ ├── PCVolumeScreen.kt │ │ ├── PCVolumeViewModel.kt │ │ └── StreamingConfirmationScreen.kt │ │ ├── playlist │ │ ├── PlaylistScreen.kt │ │ └── PlaylistViewModel.kt │ │ ├── playlists │ │ ├── PlaylistsScreen.kt │ │ └── PlaylistsViewModel.kt │ │ ├── podcast │ │ ├── PodcastScreen.kt │ │ └── PodcastViewModel.kt │ │ ├── podcasts │ │ ├── PodcastsScreen.kt │ │ └── PodcastsViewModel.kt │ │ └── settings │ │ ├── HelpScreen.kt │ │ ├── HelpScreenViewModel.kt │ │ ├── PrivacySettingsScreen.kt │ │ ├── PrivacySettingsViewModel.kt │ │ ├── SettingsRoutes.kt │ │ ├── SettingsScreen.kt │ │ ├── SettingsViewModel.kt │ │ ├── UrlScreen.kt │ │ └── WearAboutScreen.kt └── res │ ├── drawable │ └── splash_background.xml │ └── values │ ├── strings.xml │ ├── styles.xml │ └── titles.xml └── test └── kotlin └── au └── com └── shiftyjelly └── pocketcasts └── wear ├── networking └── PocketCastsNetworkingRulesTest.kt └── ui ├── LoggingInScreenViewModelTest.kt └── WatchListScreenViewModelTest.kt /.buildkite/commands/assemble-release-apk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/assemble-release-apk.sh -------------------------------------------------------------------------------- /.buildkite/commands/checkout-release-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/checkout-release-branch.sh -------------------------------------------------------------------------------- /.buildkite/commands/diff-merged-manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/diff-merged-manifest.sh -------------------------------------------------------------------------------- /.buildkite/commands/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/lint.sh -------------------------------------------------------------------------------- /.buildkite/commands/prototype-build-fad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/prototype-build-fad.sh -------------------------------------------------------------------------------- /.buildkite/commands/prototype-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/prototype-build.sh -------------------------------------------------------------------------------- /.buildkite/commands/release-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/release-build.sh -------------------------------------------------------------------------------- /.buildkite/commands/restore-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/restore-cache.sh -------------------------------------------------------------------------------- /.buildkite/commands/run-instrumented-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/run-instrumented-tests.sh -------------------------------------------------------------------------------- /.buildkite/commands/run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/run-unit-tests.sh -------------------------------------------------------------------------------- /.buildkite/commands/save-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/save-cache.sh -------------------------------------------------------------------------------- /.buildkite/commands/should-skip-job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/commands/should-skip-job.sh -------------------------------------------------------------------------------- /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.buildkite/release-builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/release-builds.yml -------------------------------------------------------------------------------- /.buildkite/release-pipelines/code-freeze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/release-pipelines/code-freeze.yml -------------------------------------------------------------------------------- /.buildkite/release-pipelines/download-translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/release-pipelines/download-translations.yml -------------------------------------------------------------------------------- /.buildkite/release-pipelines/finalize-hotfix-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/release-pipelines/finalize-hotfix-release.yml -------------------------------------------------------------------------------- /.buildkite/release-pipelines/finalize-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/release-pipelines/finalize-release.yml -------------------------------------------------------------------------------- /.buildkite/release-pipelines/new-beta-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/release-pipelines/new-beta-release.yml -------------------------------------------------------------------------------- /.buildkite/release-pipelines/new-hotfix-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/release-pipelines/new-hotfix-release.yml -------------------------------------------------------------------------------- /.buildkite/release-pipelines/update-rollouts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/release-pipelines/update-rollouts.yml -------------------------------------------------------------------------------- /.buildkite/schedules/dependency-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/schedules/dependency-analysis.yml -------------------------------------------------------------------------------- /.buildkite/schedules/dependency-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/schedules/dependency-cache.yml -------------------------------------------------------------------------------- /.buildkite/shared-pipeline-vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.buildkite/shared-pipeline-vars -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.bundle/config -------------------------------------------------------------------------------- /.configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.configure -------------------------------------------------------------------------------- /.configure-files/android.keystore.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.configure-files/android.keystore.enc -------------------------------------------------------------------------------- /.configure-files/firebase.secrets.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.configure-files/firebase.secrets.json.enc -------------------------------------------------------------------------------- /.configure-files/google-services.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.configure-files/google-services.json.enc -------------------------------------------------------------------------------- /.configure-files/google-upload-credentials.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.configure-files/google-upload-credentials.json.enc -------------------------------------------------------------------------------- /.configure-files/secret.properties.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.configure-files/secret.properties.enc -------------------------------------------------------------------------------- /.configure-files/sentry.properties.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.configure-files/sentry.properties.enc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Automattic/pocket-casts-android 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.github/ISSUE_TEMPLATE/enhancement.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/gradle-wrapper-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.github/workflows/gradle-wrapper-validation.yml -------------------------------------------------------------------------------- /.github/workflows/high-prio-issue-notify-slack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.github/workflows/high-prio-issue-notify-slack.yml -------------------------------------------------------------------------------- /.github/workflows/run-danger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.github/workflows/run-danger.yml -------------------------------------------------------------------------------- /.github/workflows/submit-gradle-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.github/workflows/submit-gradle-dependencies.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.gitleaks.toml -------------------------------------------------------------------------------- /.gitleaksignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.gitleaksignore -------------------------------------------------------------------------------- /.java-version: -------------------------------------------------------------------------------- 1 | 21.0 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | @AGENTS.md 2 | -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/Dangerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TESTING-CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/TESTING-CHECKLIST.md -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/lint-baseline.xml -------------------------------------------------------------------------------- /app/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/debug/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/debug/google-services.json -------------------------------------------------------------------------------- /app/src/debug/res/values/titles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/debug/res/values/titles.xml -------------------------------------------------------------------------------- /app/src/debug/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/debug/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /app/src/debugProd/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/debugProd/google-services.json -------------------------------------------------------------------------------- /app/src/debugProd/res/values/titles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/debugProd/res/values/titles.xml -------------------------------------------------------------------------------- /app/src/debugProd/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/debugProd/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/fonts/humane_semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/assets/fonts/humane_semibold.otf -------------------------------------------------------------------------------- /app/src/main/java/au/com/shiftyjelly/pocketcasts/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/java/au/com/shiftyjelly/pocketcasts/di/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/onboarding_disappear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/res/anim/onboarding_disappear.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/onboarding_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/res/anim/onboarding_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/titles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/res/values/titles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/wear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/res/values/wear.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/automotive_app_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/res/xml/automotive_app_desc.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/locales_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/main/res/xml/locales_config.xml -------------------------------------------------------------------------------- /app/src/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/app/src/release/AndroidManifest.xml -------------------------------------------------------------------------------- /automotive/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/build.gradle.kts -------------------------------------------------------------------------------- /automotive/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/lint-baseline.xml -------------------------------------------------------------------------------- /automotive/src/debug/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/debug/google-services.json -------------------------------------------------------------------------------- /automotive/src/debug/res/values/titles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/debug/res/values/titles.xml -------------------------------------------------------------------------------- /automotive/src/debugProd/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/debugProd/google-services.json -------------------------------------------------------------------------------- /automotive/src/debugProd/res/values/titles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/debugProd/res/values/titles.xml -------------------------------------------------------------------------------- /automotive/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /automotive/src/main/res/layout/activity_automotive_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/main/res/layout/activity_automotive_settings.xml -------------------------------------------------------------------------------- /automotive/src/main/res/layout/fragment_automotive_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/main/res/layout/fragment_automotive_settings.xml -------------------------------------------------------------------------------- /automotive/src/main/res/layout/layout_car_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/main/res/layout/layout_car_switch.xml -------------------------------------------------------------------------------- /automotive/src/main/res/layout/layout_preference_car.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/main/res/layout/layout_preference_car.xml -------------------------------------------------------------------------------- /automotive/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /automotive/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /automotive/src/main/res/values/titles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/main/res/values/titles.xml -------------------------------------------------------------------------------- /automotive/src/main/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/main/res/values/values.xml -------------------------------------------------------------------------------- /automotive/src/main/res/xml/automotive_app_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/main/res/xml/automotive_app_desc.xml -------------------------------------------------------------------------------- /automotive/src/main/res/xml/preferences_auto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/automotive/src/main/res/xml/preferences_auto.xml -------------------------------------------------------------------------------- /config/gradle/gradle_build_scan.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/config/gradle/gradle_build_scan.gradle -------------------------------------------------------------------------------- /debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/debug.keystore -------------------------------------------------------------------------------- /dependencies.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/dependencies.gradle.kts -------------------------------------------------------------------------------- /developer.properties-example: -------------------------------------------------------------------------------- 1 | use_remote_build_cache_locally=false 2 | -------------------------------------------------------------------------------- /docs/coding-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/docs/coding-style.md -------------------------------------------------------------------------------- /docs/module-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/docs/module-diagram.png -------------------------------------------------------------------------------- /docs/pull-request-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/docs/pull-request-guidelines.md -------------------------------------------------------------------------------- /docs/translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/docs/translations.md -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/env/user.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/fastlane/env/user.env-example -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lint-no-op.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/lint-no-op.xml -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/lint.xml -------------------------------------------------------------------------------- /metadata/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/metadata/release_notes.txt -------------------------------------------------------------------------------- /modules/features/account/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/account/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/color/create_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/color/create_button.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/drawable-xxxhdpi/a24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/drawable-xxxhdpi/a24.webp -------------------------------------------------------------------------------- /modules/features/account/src/main/res/drawable-xxxhdpi/conan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/drawable-xxxhdpi/conan.webp -------------------------------------------------------------------------------- /modules/features/account/src/main/res/drawable/ic_done.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/drawable/ic_done.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/drawable/ic_newsletter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/drawable/ic_newsletter.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/drawable/ic_terms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/drawable/ic_terms.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/drawable/panel_paynow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/drawable/panel_paynow.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/layout-land/car_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/layout-land/car_header.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/layout/account_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/layout/account_activity.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/layout/car_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/layout/car_header.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/layout/fragment_account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/layout/fragment_account.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/layout/fragment_sign_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/layout/fragment_sign_in.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/values-land-car/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/values-land-car/dimens.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /modules/features/account/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/account/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /modules/features/ads/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/ads/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/appreview/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/appreview/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/cartheme/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/anim/car_dialog_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/anim/car_dialog_enter.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/anim/car_dialog_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/anim/car_dialog_exit.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_accent_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_accent_dark.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_accent_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_accent_light.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_action1_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_action1_dark.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_label1_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_label1_dark.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_label1_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_label1_light.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_switch.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_tab_tint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_tab_tint.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_tint_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_tint_dark.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_tint_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_tint_light.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_title2_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_title2_dark.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_title2_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_title2_light.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_title_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_title_dark.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/color/car_title_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/color/car_title_light.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/drawable/car_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/drawable/car_checkbox.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/drawable/ic_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/drawable/ic_down.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/drawable/ic_more_vert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/drawable/ic_more_vert.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/drawable/ic_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/drawable/ic_up.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/layout/car_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/layout/car_toolbar.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values-h1752dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values-h1752dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values-h610dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values-h610dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values-night/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values-night/dimens.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values-v28/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values-v28/themes.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values-w1280dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values-w1280dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values-w1920dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values-w1920dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values-w690dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values-w690dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values-w690dp/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values-w690dp/integers.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values-w930dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values-w930dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values-w930dp/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values-w930dp/integers.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /modules/features/cartheme/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/cartheme/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /modules/features/discover/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/discover/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/drawable/ic_arrow_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/drawable/ic_arrow_down.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/drawable/ic_arrow_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/drawable/ic_arrow_up.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/drawable/panel_weblink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/drawable/panel_weblink.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/drawable/pause_episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/drawable/pause_episode.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/drawable/play_episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/drawable/play_episode.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/category_pill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/category_pill.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/item_carousel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/item_carousel.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/item_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/item_category.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/item_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/item_grid.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/item_large_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/item_large_list.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/item_top_ranked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/item_top_ranked.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/row_categories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/row_categories.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/row_category_ad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/row_category_ad.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/row_episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/row_episode.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/row_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/row_error.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/row_podcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/row_podcast.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/row_promotion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/row_promotion.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/layout/row_region.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/layout/row_region.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/menu/discover_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/menu/discover_share.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/values-h560dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/values-h560dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/values-sw360dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/values-sw360dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /modules/features/discover/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/discover/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /modules/features/endofyear/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/endofyear/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/endofyear/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/endofyear/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/endofyear/src/main/res/raw/pillar_bars_i3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/endofyear/src/main/res/raw/pillar_bars_i3.json -------------------------------------------------------------------------------- /modules/features/endofyear/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/endofyear/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /modules/features/engage/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/engage/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/engage/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/engage/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/filters/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/filters/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/filters/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/filters/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/filters/src/main/res/drawable/ic_filters_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/filters/src/main/res/drawable/ic_filters_add.xml -------------------------------------------------------------------------------- /modules/features/filters/src/main/res/drawable/ic_nothing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/filters/src/main/res/drawable/ic_nothing.xml -------------------------------------------------------------------------------- /modules/features/filters/src/main/res/drawable/ic_rename.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/filters/src/main/res/drawable/ic_rename.xml -------------------------------------------------------------------------------- /modules/features/navigation/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/navigation/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/navigation/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/navigation/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/player/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/player/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/color/trim_stroke_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/color/trim_stroke_color.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_archive_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_archive_32.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_delete_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_delete_32.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_download_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_download_32.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_duration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_duration.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_effects_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_effects_on.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_fullscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_fullscreen.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_link.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_link_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_link_back.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_markasplayed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_markasplayed.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_more.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_notes.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_notes_notify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_notes_notify.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_play_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_play_next.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_playupnext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_playupnext.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_schedule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_schedule.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_sleep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_sleep.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_speed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_speed.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_star_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_star_32.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_tick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_tick.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/ic_volumeboost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/ic_volumeboost.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/drawable/player_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/drawable/player_gradient.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/layout/activity_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/layout/activity_video.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/layout/adapter_up_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/layout/adapter_up_next.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/layout/fragment_effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/layout/fragment_effects.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/layout/fragment_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/layout/fragment_notes.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/layout/fragment_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/layout/fragment_player.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/layout/fragment_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/layout/fragment_share.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/layout/fragment_sleep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/layout/fragment_sleep.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/layout/fragment_upnext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/layout/fragment_upnext.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/layout/fragment_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/layout/fragment_video.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/layout/video_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/layout/video_view.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/layout/view_mini_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/layout/view_mini_player.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/menu/player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/menu/player.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/menu/upnext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/menu/upnext.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/raw/effects_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/raw/effects_button.json -------------------------------------------------------------------------------- /modules/features/player/src/main/res/raw/skip_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/raw/skip_button.json -------------------------------------------------------------------------------- /modules/features/player/src/main/res/raw/sleep_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/raw/sleep_button.json -------------------------------------------------------------------------------- /modules/features/player/src/main/res/values-sw340dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/values-sw340dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/values/player_styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/values/player_styles.xml -------------------------------------------------------------------------------- /modules/features/player/src/main/res/values/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/player/src/main/res/values/theme.xml -------------------------------------------------------------------------------- /modules/features/podcasts/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/podcasts/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/lint.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_author.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_author.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_badge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_badge.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_effects_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_effects_on.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_eyeball.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_eyeball.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_group.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_history.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_largegrid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_largegrid.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_link.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_list.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_podcasts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_podcasts.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_schedule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_schedule.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_silence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_silence.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_skip_outro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_skip_outro.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_skipintros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_skipintros.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_smallgrid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_smallgrid.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/ic_video_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/ic_video_row.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/panel_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/panel_border.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/progress_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/progress_bar.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/drawable/support_panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/drawable/support_panel.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/layout/adapter_episode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/layout/adapter_episode.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/layout/download_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/layout/download_button.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/menu/menu_profile_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/menu/menu_profile_list.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/menu/podcasts_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/menu/podcasts_menu.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/values-h560dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/values-h560dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/values-sw400dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/values-sw400dp/dimens.xml -------------------------------------------------------------------------------- /modules/features/podcasts/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/podcasts/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /modules/features/profile/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/profile/src/debug/res/xml/authenticator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/debug/res/xml/authenticator.xml -------------------------------------------------------------------------------- /modules/features/profile/src/debugProd/res/xml/authenticator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/debugProd/res/xml/authenticator.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/drawable/ic_heart_cycle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/drawable/ic_heart_cycle.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/drawable/ic_newspaper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/drawable/ic_newspaper.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/drawable/ic_rename.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/drawable/ic_rename.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/drawable/ic_sub_ellipse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/drawable/ic_sub_ellipse.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/drawable/ic_tab_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/drawable/ic_tab_profile.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/drawable/ic_upload_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/drawable/ic_upload_file.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/drawable/ic_yield.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/drawable/ic_yield.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/drawable/panel_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/drawable/panel_border.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/drawable/tick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/drawable/tick.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/menu/menu_addfile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/menu/menu_addfile.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/menu/menu_cloudfiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/menu/menu_cloudfiles.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/values/color.xml -------------------------------------------------------------------------------- /modules/features/profile/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /modules/features/profile/src/prototype/res/xml/authenticator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/prototype/res/xml/authenticator.xml -------------------------------------------------------------------------------- /modules/features/profile/src/release/res/xml/authenticator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/profile/src/release/res/xml/authenticator.xml -------------------------------------------------------------------------------- /modules/features/referrals/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/referrals/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/referrals/src/main/res/drawable/ic_gift.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/referrals/src/main/res/drawable/ic_gift.xml -------------------------------------------------------------------------------- /modules/features/reimagine/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/reimagine/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/reimagine/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/reimagine/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/search/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/search/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/search/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/search/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/search/src/main/res/drawable/search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/search/src/main/res/drawable/search.xml -------------------------------------------------------------------------------- /modules/features/search/src/main/res/layout/fragment_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/search/src/main/res/layout/fragment_search.xml -------------------------------------------------------------------------------- /modules/features/search/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/search/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /modules/features/search/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/search/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /modules/features/settings/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/settings/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/drawable/ic_about_star.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/drawable/ic_about_star.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/drawable/ic_hectangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/drawable/ic_hectangle.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/drawable/ic_plus_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/drawable/ic_plus_white.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/drawable/ic_skip_both.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/drawable/ic_skip_both.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/drawable/ic_skipintros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/drawable/ic_skipintros.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/drawable/ic_skipping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/drawable/ic_skipping.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/drawable/ic_speed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/drawable/ic_speed.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/drawable/ic_trim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/drawable/ic_trim.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/drawable/ic_twitter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/drawable/ic_twitter.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/drawable/whatsnew_free.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/drawable/whatsnew_free.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/layout/adapter_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/layout/adapter_error.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/layout/adapter_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/layout/adapter_footer.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/layout/adapter_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/layout/adapter_header.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/menu/menu_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/menu/menu_about.xml -------------------------------------------------------------------------------- /modules/features/settings/src/main/res/xml/preferences_export.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/settings/src/main/res/xml/preferences_export.xml -------------------------------------------------------------------------------- /modules/features/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/shared/README.md -------------------------------------------------------------------------------- /modules/features/shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/shared/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/shared/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/shared/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/shared/src/main/res/raw/isrg_root_x1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/shared/src/main/res/raw/isrg_root_x1.pem -------------------------------------------------------------------------------- /modules/features/shared/src/main/res/raw/isrg_root_x2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/shared/src/main/res/raw/isrg_root_x2.pem -------------------------------------------------------------------------------- /modules/features/shared/src/main/res/raw/lets_encrypt_r10.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/shared/src/main/res/raw/lets_encrypt_r10.pem -------------------------------------------------------------------------------- /modules/features/taskerplugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/taskerplugin/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/taskerplugin/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/taskerplugin/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/transcripts/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/transcripts/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/widgets/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/widgets/build.gradle.kts -------------------------------------------------------------------------------- /modules/features/widgets/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/widgets/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/features/widgets/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/widgets/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /modules/features/widgets/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/widgets/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /modules/features/widgets/src/main/res/xml/large_player_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/widgets/src/main/res/xml/large_player_widget.xml -------------------------------------------------------------------------------- /modules/features/widgets/src/main/res/xml/small_player_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/features/widgets/src/main/res/xml/small_player_widget.xml -------------------------------------------------------------------------------- /modules/services/analytics/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/analytics/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/analytics/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/analytics/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/compose/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/compose/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/compose/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/compose/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/crashlogging/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/crashlogging/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/deeplink/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/deeplink/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/images/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/images/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_0_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_0_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_0_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_0_6.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_0_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_0_7.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_0_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_0_8.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_0_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_0_9.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_1_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_1_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_1_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_1_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_1_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_1_6.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_1_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_1_7.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_1_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_1_8.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_1_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_1_9.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_2_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_2_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_2_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_2_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_2_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_2_6.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_2_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_2_7.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_2_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_2_8.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_2_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_2_9.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_3_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_3_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_3_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_3_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_3_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_3_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_3_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_3_6.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_3_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_3_7.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_3_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_3_8.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_3_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_3_9.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_4_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_4_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_4_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_4_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_4_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_4_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_4_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_4_6.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_4_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_4_7.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_4_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_4_8.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_4_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_4_9.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/auto_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/auto_star.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/castbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/castbox.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-hdpi/other_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-hdpi/other_apps.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-mdpi/castbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-mdpi/castbox.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-mdpi/other_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-mdpi/other_apps.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_0_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_0_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_0_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_0_6.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_0_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_0_7.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_0_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_0_8.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_0_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_0_9.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_1_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_1_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_1_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_1_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_1_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_1_6.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_1_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_1_7.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_1_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_1_8.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_1_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_1_9.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_2_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_2_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_2_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_2_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_2_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_2_6.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_2_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_2_7.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_2_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_2_8.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_2_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_2_9.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_3_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_3_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_3_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_3_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_3_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_3_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_3_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_3_6.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_3_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_3_7.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_3_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_3_8.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_3_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_3_9.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_4_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_4_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_4_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_4_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_4_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_4_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_4_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_4_6.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_4_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_4_7.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_4_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_4_8.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_4_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_4_9.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/auto_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/auto_star.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xhdpi/castbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xhdpi/castbox.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_0_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_0_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_0_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_0_6.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_0_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_0_7.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_0_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_0_8.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_0_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_0_9.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_1_1.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_1_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_1_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_1_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_1_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_2.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_3.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_4.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable-xxhdpi/auto_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable-xxhdpi/auto_5.png -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/appicon_rose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/appicon_rose.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_0.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_1.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_10.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_11.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_12.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_13.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_14.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_15.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_16.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_17.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_17.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_2.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_3.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_4.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_5.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_6.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_7.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_8.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/artwork_9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/artwork_9.webp -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/auto_files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/auto_files.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/button_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/button_pause.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/button_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/button_play.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/button_played.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/button_played.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/button_retry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/button_retry.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/circle_star.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/circle_star.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/crown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/crown.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/filter_bullet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/filter_bullet.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/filter_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/filter_play.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/filter_star.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/filter_star.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/filter_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/filter_time.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/filter_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/filter_video.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/filter_volume.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/filter_volume.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/folder_change.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/folder_change.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/folder_remove.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/folder_remove.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/go_to.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/go_to.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/google_g.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/google_g.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_ai.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_ai.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_appicon0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_appicon0.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_appicon1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_appicon1.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_appicon2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_appicon2.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_appicon3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_appicon3.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_appicon4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_appicon4.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_appicon5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_appicon5.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_appicon6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_appicon6.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_appicon7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_appicon7.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_apptheme0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_apptheme0.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_apptheme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_apptheme1.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_apptheme2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_apptheme2.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_apptheme3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_apptheme3.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_apptheme4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_apptheme4.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_apptheme5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_apptheme5.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_apptheme6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_apptheme6.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_apptheme7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_apptheme7.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_archive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_archive.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_arrow_goto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_arrow_goto.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_audio_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_audio_card.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_bookmark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_bookmark.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_cancel.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_check.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_chevron.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_chevron.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_circle.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_close.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_cloud.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_discover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_discover.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_download.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_downloaded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_downloaded.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_duplicate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_duplicate.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_edit.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_envelope.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_envelope.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_failed.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_file.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_filters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_filters.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_folder.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_goto_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_goto_32.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_headphone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_headphone.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_heart.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_heart_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_heart_2.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_history.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_icons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_icons.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_indigo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_indigo.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_locked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_locked.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_mail.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_minus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_minus.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_newsletter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_newsletter.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_overflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_overflow.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_password.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_password.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_patron.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_patron.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_play.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_play_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_play_all.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_playlists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_playlists.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_plus.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_podcasts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_podcasts.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_profile.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_remove_ads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_remove_ads.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_replace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_replace.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_report_ad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_report_ad.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_retry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_retry.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_science.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_science.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_selectall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_selectall.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_signout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_signout.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_skip_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_skip_back.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_skip_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_skip_next.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_sleep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_sleep.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_sort.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_sparkle_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_sparkle_1.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_sparkle_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_sparkle_2.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_sparkle_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_sparkle_3.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_speed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_speed.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_star.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_star.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_star_50.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_star_50.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_starred.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_starred.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_stats.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_stop.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_theme_rose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_theme_rose.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_tick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_tick.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_trim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_trim.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_unarchive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_unarchive.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_undownload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_undownload.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_unlocked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_unlocked.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_unstar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_unstar.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_upnext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_upnext.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_upnext_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_upnext_tab.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/ic_wifi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/ic_wifi.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/minus_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/minus_simple.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/pc_bw_import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/pc_bw_import.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/plus_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/plus_check.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/plus_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/plus_logo.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/plus_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/plus_simple.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/search_failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/search_failed.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/shortcut_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/shortcut_grid.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/shortcut_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/shortcut_list.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/shortcut_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/shortcut_play.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/shortcut_star.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/shortcut_star.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/shuffle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/shuffle.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/signin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/signin.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/wear_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/wear_pause.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/wear_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/wear_play.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/drawable/wear_volume.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/drawable/wear_volume.xml -------------------------------------------------------------------------------- /modules/services/images/src/main/res/raw/confetti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/raw/confetti.json -------------------------------------------------------------------------------- /modules/services/images/src/main/res/raw/nowplaying.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/images/src/main/res/raw/nowplaying.json -------------------------------------------------------------------------------- /modules/services/localization/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/localization/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/localization/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/localization/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/localization/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/localization/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/services/localization/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/localization/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /modules/services/media-noop/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/media-noop/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/model/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/model/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/model/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/model/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/payment/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/payment/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/preferences/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/preferences/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/preferences/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/preferences/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/preferences/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/preferences/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/services/protobuf/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/protobuf/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/protobuf/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/protobuf/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/protobuf/src/main/proto/sync_api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/protobuf/src/main/proto/sync_api.proto -------------------------------------------------------------------------------- /modules/services/repositories/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/repositories/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/repositories/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/repositories/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/repositories/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/repositories/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /modules/services/servers/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/servers/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/servers/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/servers/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/sharedtest/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/sharedtest/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/sharedtest/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /modules/services/sharing/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/sharing/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/sharing/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/sharing/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/ui/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/ui/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/drawable/divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/drawable/divider.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/drawable/divider_indented.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/drawable/divider_indented.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/drawable/unplayed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/drawable/unplayed.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/font/dm_sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/font/dm_sans.ttf -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/font/roboto_serif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/font/roboto_serif.ttf -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/raw/large_play_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/raw/large_play_button.json -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/values-v27/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/values-v27/themes.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/values/gradient_icon_attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/values/gradient_icon_attrs.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/xml/searchable.xml -------------------------------------------------------------------------------- /modules/services/ui/src/main/res/xml/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/ui/src/main/res/xml/shortcuts.xml -------------------------------------------------------------------------------- /modules/services/utils/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/utils/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/utils/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/utils/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/views/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/build.gradle.kts -------------------------------------------------------------------------------- /modules/services/views/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/color/navigation_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/color/navigation_color.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/drawable/circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/drawable/circle.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/layout/dialog_edit_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/layout/dialog_edit_text.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/layout/play_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/layout/play_button.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/layout/swipe_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/layout/swipe_button.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/layout/swipe_row_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/layout/swipe_row_layout.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/menu/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/menu/activity_login.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/menu/menu_multiselect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/menu/menu_multiselect.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/menu/navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/menu/navigation.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/menu/play_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/menu/play_button.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/values-sw350dp/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/values-sw350dp/strings.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/values/component_attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/values/component_attrs.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /modules/services/views/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/modules/services/views/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /proguard-rules-no-obfuscate.pro: -------------------------------------------------------------------------------- 1 | -dontobfuscate 2 | -------------------------------------------------------------------------------- /proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/proguard-rules.pro -------------------------------------------------------------------------------- /scripts/generate_themes_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/generate_themes_image.rb -------------------------------------------------------------------------------- /scripts/git-hooks/install.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/git-hooks/install.gradle -------------------------------------------------------------------------------- /scripts/git-hooks/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/git-hooks/pre-commit.sh -------------------------------------------------------------------------------- /scripts/outdated_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/outdated_dependencies.sh -------------------------------------------------------------------------------- /scripts/themes/.gitignore: -------------------------------------------------------------------------------- 1 | google_credentials.json 2 | token.yaml -------------------------------------------------------------------------------- /scripts/themes/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/themes/Gemfile -------------------------------------------------------------------------------- /scripts/themes/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/themes/Gemfile.lock -------------------------------------------------------------------------------- /scripts/themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/themes/README.md -------------------------------------------------------------------------------- /scripts/themes/download_themes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/themes/download_themes.rb -------------------------------------------------------------------------------- /scripts/themes/generate_kotlin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/themes/generate_kotlin.rb -------------------------------------------------------------------------------- /scripts/themes/generate_kotlin_compose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/themes/generate_kotlin_compose.rb -------------------------------------------------------------------------------- /scripts/themes/generate_xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/themes/generate_xml.rb -------------------------------------------------------------------------------- /scripts/themes/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/scripts/themes/run.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/version.properties -------------------------------------------------------------------------------- /wear/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/wear/build.gradle.kts -------------------------------------------------------------------------------- /wear/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/wear/lint-baseline.xml -------------------------------------------------------------------------------- /wear/src/debug/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/wear/src/debug/google-services.json -------------------------------------------------------------------------------- /wear/src/debug/res/values/titles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/wear/src/debug/res/values/titles.xml -------------------------------------------------------------------------------- /wear/src/debugProd/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/wear/src/debugProd/google-services.json -------------------------------------------------------------------------------- /wear/src/debugProd/res/values/titles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/wear/src/debugProd/res/values/titles.xml -------------------------------------------------------------------------------- /wear/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/wear/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /wear/src/main/res/drawable/splash_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/wear/src/main/res/drawable/splash_background.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/wear/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/wear/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /wear/src/main/res/values/titles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/pocket-casts-android/HEAD/wear/src/main/res/values/titles.xml --------------------------------------------------------------------------------