diff --git a/apps/flipcash/app/build.gradle.kts b/apps/flipcash/app/build.gradle.kts
index 9cb72f285..60f10da4d 100644
--- a/apps/flipcash/app/build.gradle.kts
+++ b/apps/flipcash/app/build.gradle.kts
@@ -1,3 +1,4 @@
+import com.android.build.api.variant.BuildConfigField
import com.bugsnag.gradle.dsl.debug
import com.bugsnag.gradle.dsl.release
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
@@ -15,6 +16,7 @@ plugins {
alias(libs.plugins.secrets)
id("org.jetbrains.kotlin.plugin.compose")
alias(libs.plugins.kover)
+ alias(libs.plugins.androidx.baselineprofile)
}
fun gitVersionCode(): Int {
@@ -154,6 +156,23 @@ kotlin {
}
}
+// Expose Compose testTags as resource-ids (for UiAutomator/Maestro/baseline-profile
+// generation) on every variant EXCEPT the shipping `release` — keeps internal ids like
+// `seed_input_field` out of the production wallet build. Read in App.kt as
+// BuildConfig.UI_TESTABLE. Refs Bugsnag 6a46563b.
+androidComponents {
+ onVariants { variant ->
+ variant.buildConfigFields?.put(
+ "UI_TESTABLE",
+ BuildConfigField(
+ "boolean",
+ (variant.name != "release").toString(),
+ "testTags exposed as resource-ids; false only for shipping release",
+ ),
+ )
+ }
+}
+
dependencies {
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
implementation(project(":services:flipcash-compose"))
@@ -294,6 +313,9 @@ dependencies {
implementation(libs.bugsnag)
implementation(libs.androidx.profileinstaller)
+ // Consumes the generated baseline profile from the benchmark module and packages it
+ // into the APK (assets/dexopt/baseline.prof). Refs Bugsnag 6a46563b.
+ baselineProfile(project(":apps:flipcash:benchmark"))
testImplementation(libs.junit)
testImplementation(libs.kotlin.test.junit)
diff --git a/apps/flipcash/app/src/main/AndroidManifest.xml b/apps/flipcash/app/src/main/AndroidManifest.xml
index e157df7ba..e351cf0b2 100644
--- a/apps/flipcash/app/src/main/AndroidManifest.xml
+++ b/apps/flipcash/app/src/main/AndroidManifest.xml
@@ -58,6 +58,9 @@
android:theme="@style/Theme.Code"
tools:targetApi="tiramisu">
+
+
+
diff --git a/apps/flipcash/app/src/main/baseline-prof.txt b/apps/flipcash/app/src/main/baseline-prof.txt
deleted file mode 100644
index 5ef9fde79..000000000
--- a/apps/flipcash/app/src/main/baseline-prof.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-# Baseline profile for Flipcash — covers cold start and Compose rendering.
-# Generated profiles from :apps:flipcash:benchmark will replace this file.
-
-# Application + Activity startup
-HSPLcom/flipcash/app/FlipcashApp;->onCreate()V
-HSPLcom/flipcash/app/MainActivity;->onCreate(Landroid/os/Bundle;)V
-
-# Hilt dependency injection (startup-critical)
-HSPLdagger/hilt/android/internal/**;->**(**)**
-HSPLcom/flipcash/app/FlipcashApp_GeneratedInjector;->**(**)**
-HSPLcom/flipcash/app/MainActivity_GeneratedInjector;->**(**)**
-
-# Jetpack Compose runtime (critical for first frame)
-HSPLandroidx/compose/runtime/**;->**(**)**
-HSPLandroidx/compose/ui/**;->**(**)**
-HSPLandroidx/compose/foundation/**;->**(**)**
-HSPLandroidx/compose/material/**;->**(**)**
-HSPLandroidx/compose/animation/**;->**(**)**
-
-# Compose layout and drawing
-HSPLandroidx/compose/ui/platform/AndroidComposeView;->**(**)**
-HSPLandroidx/compose/ui/node/**;->**(**)**
-
-# Navigation
-HSPLandroidx/navigation/**;->**(**)**
-
-# Lifecycle
-HSPLandroidx/lifecycle/**;->**(**)**
-HSPLandroidx/activity/**;->**(**)**
-
-# Kotlinx coroutines (startup flows)
-HSPLkotlinx/coroutines/**;->**(**)**
-
-# Kotlinx serialization (used in session/config deserialization)
-HSPLkotlinx/serialization/**;->**(**)**
-
-# Coil image loading
-HSPLcoil3/**;->**(**)**
-
-# App theme and UI setup
-HSPLcom/getcode/theme/**;->**(**)**
-HSPLcom/getcode/ui/core/**;->**(**)**
-HSPLcom/getcode/ui/components/**;->**(**)**
diff --git a/apps/flipcash/app/src/main/kotlin/com/flipcash/app/internal/ui/App.kt b/apps/flipcash/app/src/main/kotlin/com/flipcash/app/internal/ui/App.kt
index f45a07f54..054a6af91 100644
--- a/apps/flipcash/app/src/main/kotlin/com/flipcash/app/internal/ui/App.kt
+++ b/apps/flipcash/app/src/main/kotlin/com/flipcash/app/internal/ui/App.kt
@@ -133,7 +133,9 @@ internal fun App(
onRootReached = { /* handled by activity back press */ },
)
- val semanticsModifier = if (BuildConfig.DEBUG) {
+ // UI_TESTABLE is true for debug + the profile-gen/benchmark variants and
+ // false for the shipping release, so testTags aren't exposed in production.
+ val semanticsModifier = if (BuildConfig.UI_TESTABLE) {
Modifier.semantics { testTagsAsResourceId = true }
} else Modifier
diff --git a/apps/flipcash/app/src/release/generated/baselineProfiles/baseline-prof.txt b/apps/flipcash/app/src/release/generated/baselineProfiles/baseline-prof.txt
new file mode 100644
index 000000000..5bebc669e
--- /dev/null
+++ b/apps/flipcash/app/src/release/generated/baselineProfiles/baseline-prof.txt
@@ -0,0 +1,59074 @@
+Landroidx/activity/ActivityFlags;
+SPLandroidx/activity/ActivityFlags;->()V
+SPLandroidx/activity/ActivityFlags;->()V
+PLandroidx/activity/BackEventCompat;->()V
+PLandroidx/activity/BackEventCompat;->(FFFIJ)V
+PLandroidx/activity/BackEventCompat;->(Landroidx/navigationevent/NavigationEvent;)V
+Landroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m$1()I
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m$1()Landroid/hardware/camera2/CaptureRequest$Key;
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m$1(Landroid/window/BackEvent;)F
+SPLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m$2()Landroid/hardware/camera2/CameraCharacteristics$Key;
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m$2(Landroid/window/BackEvent;)F
+SPLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m$3()Landroid/hardware/camera2/CameraCharacteristics$Key;
+SPLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m$4()Landroid/hardware/camera2/CameraCharacteristics$Key;
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m$7()Landroid/hardware/camera2/CameraCharacteristics$Key;
+SPLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m$8()Landroid/hardware/camera2/CameraCharacteristics$Key;
+SPLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m$9()Landroid/hardware/camera2/CameraCharacteristics$Key;
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m()Landroid/hardware/camera2/CaptureRequest$Key;
+SPLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m()Ljava/lang/String;
+SPLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m(Landroid/hardware/camera2/CameraManager;)Ljava/util/Set;
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m(Landroid/hardware/camera2/TotalCaptureResult;)Ljava/util/Map;
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m(Landroid/hardware/camera2/params/OutputConfiguration;J)V
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m(Landroid/window/BackEvent;)F
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m(Landroid/window/BackEvent;)I
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m(Landroid/window/BackEvent;)J
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m(Landroid/window/OnBackInvokedDispatcher;ILandroid/window/OnBackInvokedCallback;)V
+PLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m(Landroid/window/OnBackInvokedDispatcher;Landroid/window/OnBackInvokedCallback;)V
+SPLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m(Ljava/lang/Object;)Landroid/hardware/camera2/params/DynamicRangeProfiles;
+SPLandroidx/activity/BackEventCompat$$ExternalSyntheticApiModelOutline0;->m(Ljava/lang/Object;)Landroid/window/OnBackInvokedCallback;
+PLandroidx/activity/BackEventCompat$Companion;->()V
+PLandroidx/activity/BackEventCompat$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+Landroidx/activity/ComponentActivity;
+SPLandroidx/activity/ComponentActivity;->()V
+SPLandroidx/activity/ComponentActivity;->()V
+SPLandroidx/activity/ComponentActivity;->_init_$lambda$1(Landroidx/activity/ComponentActivity;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+SPLandroidx/activity/ComponentActivity;->_init_$lambda$2(Landroidx/activity/ComponentActivity;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+SPLandroidx/activity/ComponentActivity;->_init_$lambda$4(Landroidx/activity/ComponentActivity;Landroid/content/Context;)V
+SPLandroidx/activity/ComponentActivity;->access$ensureViewModelStore(Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity;->addMenuProvider(Landroidx/core/view/MenuProvider;)V
+SPLandroidx/activity/ComponentActivity;->addObserverForBackInvoker$lambda$0(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/ComponentActivity;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+SPLandroidx/activity/ComponentActivity;->addObserverForBackInvoker(Landroidx/activity/OnBackPressedDispatcher;)V
+SPLandroidx/activity/ComponentActivity;->addOnConfigurationChangedListener(Landroidx/core/util/Consumer;)V
+SPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
+SPLandroidx/activity/ComponentActivity;->addOnMultiWindowModeChangedListener(Landroidx/core/util/Consumer;)V
+SPLandroidx/activity/ComponentActivity;->addOnNewIntentListener(Landroidx/core/util/Consumer;)V
+SPLandroidx/activity/ComponentActivity;->addOnPictureInPictureModeChangedListener(Landroidx/core/util/Consumer;)V
+SPLandroidx/activity/ComponentActivity;->addOnTrimMemoryListener(Landroidx/core/util/Consumer;)V
+SPLandroidx/activity/ComponentActivity;->createFullyDrawnExecutor()Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor;
+SPLandroidx/activity/ComponentActivity;->defaultViewModelProviderFactory_delegate$lambda$0(Landroidx/activity/ComponentActivity;)Landroidx/lifecycle/SavedStateViewModelFactory;
+SPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V
+SPLandroidx/activity/ComponentActivity;->fullyDrawnReporter_delegate$lambda$0(Landroidx/activity/ComponentActivity;)Landroidx/activity/FullyDrawnReporter;
+SPLandroidx/activity/ComponentActivity;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry;
+SPLandroidx/activity/ComponentActivity;->getDefaultViewModelCreationExtras()Landroidx/lifecycle/viewmodel/CreationExtras;
+SPLandroidx/activity/ComponentActivity;->getDefaultViewModelProviderFactory()Landroidx/lifecycle/ViewModelProvider$Factory;
+SPLandroidx/activity/ComponentActivity;->getFullyDrawnReporter()Landroidx/activity/FullyDrawnReporter;
+SPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle;
+SPLandroidx/activity/ComponentActivity;->getNavigationEventDispatcher()Landroidx/navigationevent/NavigationEventDispatcher;
+SPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
+SPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
+SPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
+SPLandroidx/activity/ComponentActivity;->initializeViewTreeOwners()V
+SPLandroidx/activity/ComponentActivity;->invalidateMenu()V
+SPLandroidx/activity/ComponentActivity;->menuHostHelper$lambda$0(Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity;->onBackPressedDispatcher_delegate$lambda$0(Landroidx/activity/ComponentActivity;)Landroidx/activity/OnBackPressedDispatcher;
+SPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V
+SPLandroidx/activity/ComponentActivity;->reportFullyDrawn()V
+SPLandroidx/activity/ComponentActivity;->setContentView(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;->(Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;->run()V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda10;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda10;->(Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda10;->invoke()Ljava/lang/Object;
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda11;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda11;->(Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda11;->invoke()Ljava/lang/Object;
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda12;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda12;->(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;->(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;->(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda4;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda4;->(Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda4;->invoke()Ljava/lang/Object;
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda5;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda5;->(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda6;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda6;->(Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda6;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda7;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda7;->(Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda7;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda8;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda8;->(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda9;
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda9;->(Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda9;->onContextAvailable(Landroid/content/Context;)V
+Landroidx/activity/ComponentActivity$4;
+SPLandroidx/activity/ComponentActivity$4;->(Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+Landroidx/activity/ComponentActivity$Companion;
+SPLandroidx/activity/ComponentActivity$Companion;->()V
+SPLandroidx/activity/ComponentActivity$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+Landroidx/activity/ComponentActivity$NonConfigurationInstances;
+Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor;
+Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl;
+SPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl;->(Landroidx/activity/ComponentActivity;)V
+SPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl;->onDraw()V
+PLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl;->run()V
+SPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorImpl;->viewCreated(Landroid/view/View;)V
+Landroidx/activity/ComponentActivity$activityResultRegistry$1;
+SPLandroidx/activity/ComponentActivity$activityResultRegistry$1;->(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/EdgeToEdge;
+SPLandroidx/activity/EdgeToEdge;->()V
+SPLandroidx/activity/EdgeToEdge;->enable$default(Landroidx/activity/ComponentActivity;Landroidx/activity/SystemBarStyle;Landroidx/activity/SystemBarStyle;ILjava/lang/Object;)V
+SPLandroidx/activity/EdgeToEdge;->enable(Landroidx/activity/ComponentActivity;Landroidx/activity/SystemBarStyle;Landroidx/activity/SystemBarStyle;)V
+SPLandroidx/activity/EdgeToEdge;->enableEdgeToEdge$lambda$1(Landroidx/activity/EdgeToEdgeImpl;Landroidx/activity/SystemBarStyle;Landroidx/activity/SystemBarStyle;Landroidx/activity/ComponentActivity;Landroid/view/View;)V
+Landroidx/activity/EdgeToEdge$$ExternalSyntheticLambda0;
+SPLandroidx/activity/EdgeToEdge$$ExternalSyntheticLambda0;->(Landroidx/activity/EdgeToEdgeImpl;Landroidx/activity/SystemBarStyle;Landroidx/activity/SystemBarStyle;Landroidx/activity/ComponentActivity;Landroid/view/View;)V
+SPLandroidx/activity/EdgeToEdge$$ExternalSyntheticLambda0;->run()V
+Landroidx/activity/EdgeToEdge$enableEdgeToEdge$1$2;
+SPLandroidx/activity/EdgeToEdge$enableEdgeToEdge$1$2;->(Ljava/lang/Runnable;Landroid/content/Context;)V
+Landroidx/activity/EdgeToEdgeApi26;
+SPLandroidx/activity/EdgeToEdgeApi26;->()V
+Landroidx/activity/EdgeToEdgeApi28;
+SPLandroidx/activity/EdgeToEdgeApi28;->()V
+Landroidx/activity/EdgeToEdgeApi29;
+SPLandroidx/activity/EdgeToEdgeApi29;->()V
+Landroidx/activity/EdgeToEdgeApi30;
+SPLandroidx/activity/EdgeToEdgeApi30;->()V
+SPLandroidx/activity/EdgeToEdgeApi30;->adjustLayoutInDisplayCutoutMode(Landroid/view/Window;)V
+Landroidx/activity/EdgeToEdgeApi35;
+SPLandroidx/activity/EdgeToEdgeApi35;->()V
+SPLandroidx/activity/EdgeToEdgeApi35;->setUp(Landroidx/activity/SystemBarStyle;Landroidx/activity/SystemBarStyle;Landroid/view/Window;Landroid/view/View;ZZ)V
+Landroidx/activity/EdgeToEdgeBase;
+SPLandroidx/activity/EdgeToEdgeBase;->()V
+Landroidx/activity/EdgeToEdgeImpl;
+Landroidx/activity/FullyDrawnReporter;
+SPLandroidx/activity/FullyDrawnReporter;->(Ljava/util/concurrent/Executor;Lkotlin/jvm/functions/Function0;)V
+SPLandroidx/activity/FullyDrawnReporter;->fullyDrawnReported()V
+Landroidx/activity/FullyDrawnReporter$$ExternalSyntheticLambda0;
+SPLandroidx/activity/FullyDrawnReporter$$ExternalSyntheticLambda0;->(Landroidx/activity/FullyDrawnReporter;)V
+Landroidx/activity/FullyDrawnReporterOwner;
+Landroidx/activity/OnBackPressedCallback;
+SPLandroidx/activity/OnBackPressedCallback;->(Z)V
+SPLandroidx/activity/OnBackPressedCallback;->addCloseable$activity(Ljava/lang/AutoCloseable;)V
+SPLandroidx/activity/OnBackPressedCallback;->createNavigationEventHandler$activity(Landroidx/navigationevent/NavigationEventInfo;)Landroidx/activity/OnBackPressedCallback$OnBackPressedEventHandler;
+SPLandroidx/activity/OnBackPressedCallback;->isEnabled()Z
+SPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V
+Landroidx/activity/OnBackPressedCallback$OnBackPressedEventHandler;
+SPLandroidx/activity/OnBackPressedCallback$OnBackPressedEventHandler;->(Landroidx/activity/OnBackPressedCallback;Landroidx/navigationevent/NavigationEventInfo;)V
+SPLandroidx/activity/OnBackPressedCallback$OnBackPressedEventHandler;->isLifecycleActive()Z
+SPLandroidx/activity/OnBackPressedCallback$OnBackPressedEventHandler;->setLifecycleActive(Z)V
+Landroidx/activity/OnBackPressedCallbackInfo;
+SPLandroidx/activity/OnBackPressedCallbackInfo;->(Landroidx/activity/OnBackPressedCallback;Landroidx/lifecycle/LifecycleOwner;)V
+Landroidx/activity/OnBackPressedDispatcher;
+SPLandroidx/activity/OnBackPressedDispatcher;->(Ljava/lang/Runnable;)V
+SPLandroidx/activity/OnBackPressedDispatcher;->(Ljava/lang/Runnable;Landroidx/core/util/Consumer;)V
+SPLandroidx/activity/OnBackPressedDispatcher;->access$getOnHasEnabledCallbacksChanged$p(Landroidx/activity/OnBackPressedDispatcher;)Landroidx/core/util/Consumer;
+SPLandroidx/activity/OnBackPressedDispatcher;->access$setHasEnabledCallbacks$p(Landroidx/activity/OnBackPressedDispatcher;Z)V
+SPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V
+SPLandroidx/activity/OnBackPressedDispatcher;->eventInput_delegate$lambda$0(Landroidx/activity/OnBackPressedDispatcher;)Landroidx/activity/OnBackPressedDispatcher$OnBackPressedEventInput;
+SPLandroidx/activity/OnBackPressedDispatcher;->getEventDispatcher$activity()Landroidx/navigationevent/NavigationEventDispatcher;
+SPLandroidx/activity/OnBackPressedDispatcher;->getEventInput()Landroidx/activity/OnBackPressedDispatcher$OnBackPressedEventInput;
+SPLandroidx/activity/OnBackPressedDispatcher;->setOnBackInvokedDispatcher(Landroid/window/OnBackInvokedDispatcher;)V
+Landroidx/activity/OnBackPressedDispatcher$$ExternalSyntheticLambda0;
+SPLandroidx/activity/OnBackPressedDispatcher$$ExternalSyntheticLambda0;->(Landroidx/activity/OnBackPressedDispatcher;)V
+SPLandroidx/activity/OnBackPressedDispatcher$$ExternalSyntheticLambda0;->invoke()Ljava/lang/Object;
+Landroidx/activity/OnBackPressedDispatcher$$ExternalSyntheticLambda1;
+SPLandroidx/activity/OnBackPressedDispatcher$$ExternalSyntheticLambda1;->(Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedDispatcher$addCallback$observer$1;)V
+Landroidx/activity/OnBackPressedDispatcher$OnBackPressedEventInput;
+SPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedEventInput;->(Landroidx/activity/OnBackPressedDispatcher;)V
+SPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedEventInput;->getDispatcher()Landroidx/navigationevent/NavigationEventDispatcher;
+SPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedEventInput;->onHasEnabledHandlersChanged(Z)V
+Landroidx/activity/OnBackPressedDispatcher$OnBackPressedEventInput$$ExternalSyntheticLambda0;
+SPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedEventInput$$ExternalSyntheticLambda0;->(Landroidx/activity/OnBackPressedDispatcher;)V
+Landroidx/activity/OnBackPressedDispatcher$addCallback$observer$1;
+SPLandroidx/activity/OnBackPressedDispatcher$addCallback$observer$1;->(Landroidx/activity/OnBackPressedCallback$OnBackPressedEventHandler;Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;)V
+SPLandroidx/activity/OnBackPressedDispatcher$addCallback$observer$1;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
+Landroidx/activity/OnBackPressedDispatcher$addCallback$observer$1$WhenMappings;
+SPLandroidx/activity/OnBackPressedDispatcher$addCallback$observer$1$WhenMappings;->()V
+Landroidx/activity/OnBackPressedDispatcherOwner;
+Landroidx/activity/R$id;
+Landroidx/activity/SystemBarStyle;
+SPLandroidx/activity/SystemBarStyle;->()V
+SPLandroidx/activity/SystemBarStyle;->(IIILkotlin/jvm/functions/Function1;)V
+SPLandroidx/activity/SystemBarStyle;->(IIILkotlin/jvm/functions/Function1;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+SPLandroidx/activity/SystemBarStyle;->getDetectDarkMode$activity()Lkotlin/jvm/functions/Function1;
+SPLandroidx/activity/SystemBarStyle;->getNightMode$activity()I
+SPLandroidx/activity/SystemBarStyle;->getScrimWithEnforcedContrast$activity(Z)I
+Landroidx/activity/SystemBarStyle$Companion;
+SPLandroidx/activity/SystemBarStyle$Companion;->()V
+SPLandroidx/activity/SystemBarStyle$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+SPLandroidx/activity/SystemBarStyle$Companion;->auto$default(Landroidx/activity/SystemBarStyle$Companion;IILkotlin/jvm/functions/Function1;ILjava/lang/Object;)Landroidx/activity/SystemBarStyle;
+SPLandroidx/activity/SystemBarStyle$Companion;->auto$lambda$0(Landroid/content/res/Resources;)Z
+SPLandroidx/activity/SystemBarStyle$Companion;->auto(IILkotlin/jvm/functions/Function1;)Landroidx/activity/SystemBarStyle;
+Landroidx/activity/SystemBarStyle$Companion$$ExternalSyntheticLambda2;
+SPLandroidx/activity/SystemBarStyle$Companion$$ExternalSyntheticLambda2;->()V
+SPLandroidx/activity/SystemBarStyle$Companion$$ExternalSyntheticLambda2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/activity/ViewTreeFullyDrawnReporterOwner;
+SPLandroidx/activity/ViewTreeFullyDrawnReporterOwner;->set(Landroid/view/View;Landroidx/activity/FullyDrawnReporterOwner;)V
+Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner;
+SPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner;->set(Landroid/view/View;Landroidx/activity/OnBackPressedDispatcherOwner;)V
+Landroidx/activity/compose/ActivityResultLauncherHolder;
+SPLandroidx/activity/compose/ActivityResultLauncherHolder;->()V
+SPLandroidx/activity/compose/ActivityResultLauncherHolder;->()V
+SPLandroidx/activity/compose/ActivityResultLauncherHolder;->setLauncher(Landroidx/activity/result/ActivityResultLauncher;)V
+PLandroidx/activity/compose/ActivityResultLauncherHolder;->unregister()V
+Landroidx/activity/compose/ActivityResultRegistryKt;
+SPLandroidx/activity/compose/ActivityResultRegistryKt;->$r8$lambda$YAfMonS2ROkWVWyfbsXWPpLpnb0(Landroidx/activity/compose/ActivityResultLauncherHolder;Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/compose/runtime/State;Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
+SPLandroidx/activity/compose/ActivityResultRegistryKt;->$r8$lambda$gcIK6Em3026em-cFeXEknnn_tB4()Ljava/lang/String;
+SPLandroidx/activity/compose/ActivityResultRegistryKt;->rememberLauncherForActivityResult$lambda$0$0()Ljava/lang/String;
+SPLandroidx/activity/compose/ActivityResultRegistryKt;->rememberLauncherForActivityResult$lambda$4$0(Landroidx/activity/compose/ActivityResultLauncherHolder;Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/compose/runtime/State;Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
+SPLandroidx/activity/compose/ActivityResultRegistryKt;->rememberLauncherForActivityResult(Landroidx/activity/result/contract/ActivityResultContract;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;I)Landroidx/activity/compose/ManagedActivityResultLauncher;
+Landroidx/activity/compose/ActivityResultRegistryKt$$ExternalSyntheticLambda0;
+SPLandroidx/activity/compose/ActivityResultRegistryKt$$ExternalSyntheticLambda0;->()V
+SPLandroidx/activity/compose/ActivityResultRegistryKt$$ExternalSyntheticLambda0;->invoke()Ljava/lang/Object;
+Landroidx/activity/compose/ActivityResultRegistryKt$$ExternalSyntheticLambda1;
+SPLandroidx/activity/compose/ActivityResultRegistryKt$$ExternalSyntheticLambda1;->(Landroidx/activity/compose/ActivityResultLauncherHolder;Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/compose/runtime/State;)V
+SPLandroidx/activity/compose/ActivityResultRegistryKt$$ExternalSyntheticLambda1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/activity/compose/ActivityResultRegistryKt$$ExternalSyntheticLambda2;
+SPLandroidx/activity/compose/ActivityResultRegistryKt$$ExternalSyntheticLambda2;->(Landroidx/compose/runtime/State;)V
+Landroidx/activity/compose/ActivityResultRegistryKt$rememberLauncherForActivityResult$lambda$4$0$$inlined$onDispose$1;
+SPLandroidx/activity/compose/ActivityResultRegistryKt$rememberLauncherForActivityResult$lambda$4$0$$inlined$onDispose$1;->(Landroidx/activity/compose/ActivityResultLauncherHolder;)V
+PLandroidx/activity/compose/ActivityResultRegistryKt$rememberLauncherForActivityResult$lambda$4$0$$inlined$onDispose$1;->dispose()V
+Landroidx/activity/compose/BackHandlerInfo;
+SPLandroidx/activity/compose/BackHandlerInfo;->(Ljava/lang/Object;J)V
+PLandroidx/activity/compose/BackHandlerInfo;->equals(Ljava/lang/Object;)Z
+Landroidx/activity/compose/BackHandlerKt;
+SPLandroidx/activity/compose/BackHandlerKt;->$r8$lambda$B1Fin5hf49c20rDAvK1Q7mhIkmo(Landroidx/activity/compose/internal/BackHandlerDispatcherCompat;Landroidx/activity/compose/ComposeBackHandler;Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
+SPLandroidx/activity/compose/BackHandlerKt;->$r8$lambda$kM0UcaP40dPddLQ78INQJof-AtI(Landroidx/activity/compose/ComposeBackHandler;ZLandroidx/lifecycle/compose/LifecycleStartStopEffectScope;)Landroidx/lifecycle/compose/LifecycleStopOrDisposeEffectResult;
+SPLandroidx/activity/compose/BackHandlerKt;->$r8$lambda$uh0XynCQ53WgWF1AJSb8Svr1cqM(Landroidx/activity/compose/ComposeBackHandler;Lkotlin/jvm/functions/Function0;)Lkotlin/Unit;
+SPLandroidx/activity/compose/BackHandlerKt;->BackHandler$lambda$2$0(Landroidx/activity/compose/ComposeBackHandler;Lkotlin/jvm/functions/Function0;)Lkotlin/Unit;
+SPLandroidx/activity/compose/BackHandlerKt;->BackHandler$lambda$3$0(Landroidx/activity/compose/ComposeBackHandler;ZLandroidx/lifecycle/compose/LifecycleStartStopEffectScope;)Landroidx/lifecycle/compose/LifecycleStopOrDisposeEffectResult;
+SPLandroidx/activity/compose/BackHandlerKt;->BackHandler$lambda$4$0(Landroidx/activity/compose/internal/BackHandlerDispatcherCompat;Landroidx/activity/compose/ComposeBackHandler;Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
+SPLandroidx/activity/compose/BackHandlerKt;->BackHandler(ZLkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;II)V
+Landroidx/activity/compose/BackHandlerKt$$ExternalSyntheticLambda0;
+SPLandroidx/activity/compose/BackHandlerKt$$ExternalSyntheticLambda0;->(Landroidx/activity/compose/ComposeBackHandler;Lkotlin/jvm/functions/Function0;)V
+SPLandroidx/activity/compose/BackHandlerKt$$ExternalSyntheticLambda0;->invoke()Ljava/lang/Object;
+Landroidx/activity/compose/BackHandlerKt$$ExternalSyntheticLambda1;
+SPLandroidx/activity/compose/BackHandlerKt$$ExternalSyntheticLambda1;->(Landroidx/activity/compose/ComposeBackHandler;Z)V
+SPLandroidx/activity/compose/BackHandlerKt$$ExternalSyntheticLambda1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/activity/compose/BackHandlerKt$$ExternalSyntheticLambda2;
+SPLandroidx/activity/compose/BackHandlerKt$$ExternalSyntheticLambda2;->(Landroidx/activity/compose/internal/BackHandlerDispatcherCompat;Landroidx/activity/compose/ComposeBackHandler;)V
+SPLandroidx/activity/compose/BackHandlerKt$$ExternalSyntheticLambda2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/activity/compose/BackHandlerKt$$ExternalSyntheticLambda5;
+SPLandroidx/activity/compose/BackHandlerKt$$ExternalSyntheticLambda5;->(ZLkotlin/jvm/functions/Function0;II)V
+Landroidx/activity/compose/BackHandlerKt$BackHandler$lambda$3$0$$inlined$onStopOrDispose$1;
+SPLandroidx/activity/compose/BackHandlerKt$BackHandler$lambda$3$0$$inlined$onStopOrDispose$1;->(Landroidx/lifecycle/compose/LifecycleStartStopEffectScope;Landroidx/activity/compose/ComposeBackHandler;)V
+PLandroidx/activity/compose/BackHandlerKt$BackHandler$lambda$3$0$$inlined$onStopOrDispose$1;->runStopOrDisposeEffect()V
+Landroidx/activity/compose/BackHandlerKt$BackHandler$lambda$4$0$$inlined$onDispose$1;
+SPLandroidx/activity/compose/BackHandlerKt$BackHandler$lambda$4$0$$inlined$onDispose$1;->(Landroidx/activity/compose/internal/BackHandlerDispatcherCompat;Landroidx/activity/compose/ComposeBackHandler;)V
+PLandroidx/activity/compose/BackHandlerKt$BackHandler$lambda$4$0$$inlined$onDispose$1;->dispose()V
+Landroidx/activity/compose/ComponentActivityKt;
+SPLandroidx/activity/compose/ComponentActivityKt;->()V
+SPLandroidx/activity/compose/ComponentActivityKt;->setContent$default(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/CompositionContext;Lkotlin/jvm/functions/Function2;ILjava/lang/Object;)V
+SPLandroidx/activity/compose/ComponentActivityKt;->setContent(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/CompositionContext;Lkotlin/jvm/functions/Function2;)V
+SPLandroidx/activity/compose/ComponentActivityKt;->setOwners(Landroidx/activity/ComponentActivity;)V
+Landroidx/activity/compose/ComposeBackHandler;
+SPLandroidx/activity/compose/ComposeBackHandler;->(Landroidx/activity/compose/BackHandlerInfo;)V
+PLandroidx/activity/compose/ComposeBackHandler;->onBackCompleted()V
+SPLandroidx/activity/compose/ComposeBackHandler;->setCurrentOnBackCompleted(Lkotlin/jvm/functions/Function0;)V
+Landroidx/activity/compose/ComposeBackHandler$$ExternalSyntheticLambda0;
+SPLandroidx/activity/compose/ComposeBackHandler$$ExternalSyntheticLambda0;->()V
+Landroidx/activity/compose/LocalActivityKt;
+SPLandroidx/activity/compose/LocalActivityKt;->()V
+SPLandroidx/activity/compose/LocalActivityKt;->LocalActivity$lambda$0(Landroidx/compose/runtime/CompositionLocalAccessorScope;)Landroid/app/Activity;
+SPLandroidx/activity/compose/LocalActivityKt;->getLocalActivity()Landroidx/compose/runtime/ProvidableCompositionLocal;
+Landroidx/activity/compose/LocalActivityKt$$ExternalSyntheticLambda0;
+SPLandroidx/activity/compose/LocalActivityKt$$ExternalSyntheticLambda0;->()V
+SPLandroidx/activity/compose/LocalActivityKt$$ExternalSyntheticLambda0;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/activity/compose/LocalActivityResultRegistryOwner;
+SPLandroidx/activity/compose/LocalActivityResultRegistryOwner;->()V
+SPLandroidx/activity/compose/LocalActivityResultRegistryOwner;->()V
+SPLandroidx/activity/compose/LocalActivityResultRegistryOwner;->LocalComposition$lambda$0()Landroidx/activity/result/ActivityResultRegistryOwner;
+SPLandroidx/activity/compose/LocalActivityResultRegistryOwner;->getCurrent(Landroidx/compose/runtime/Composer;I)Landroidx/activity/result/ActivityResultRegistryOwner;
+Landroidx/activity/compose/LocalActivityResultRegistryOwner$$ExternalSyntheticLambda0;
+SPLandroidx/activity/compose/LocalActivityResultRegistryOwner$$ExternalSyntheticLambda0;->()V
+SPLandroidx/activity/compose/LocalActivityResultRegistryOwner$$ExternalSyntheticLambda0;->invoke()Ljava/lang/Object;
+Landroidx/activity/compose/ManagedActivityResultLauncher;
+SPLandroidx/activity/compose/ManagedActivityResultLauncher;->()V
+SPLandroidx/activity/compose/ManagedActivityResultLauncher;->(Landroidx/activity/compose/ActivityResultLauncherHolder;Landroidx/compose/runtime/State;)V
+Landroidx/activity/compose/internal/BackHandlerCompat;
+SPLandroidx/activity/compose/internal/BackHandlerCompat;->()V
+SPLandroidx/activity/compose/internal/BackHandlerCompat;->(Landroidx/navigationevent/NavigationEventInfo;)V
+SPLandroidx/activity/compose/internal/BackHandlerCompat;->getNavigationEventHandler()Landroidx/navigationevent/NavigationEventHandler;
+PLandroidx/activity/compose/internal/BackHandlerCompat;->onBackStarted(Landroidx/activity/BackEventCompat;)V
+SPLandroidx/activity/compose/internal/BackHandlerCompat;->setBackEnabled(Z)V
+Landroidx/activity/compose/internal/BackHandlerCompat$navigationEventHandler$1;
+SPLandroidx/activity/compose/internal/BackHandlerCompat$navigationEventHandler$1;->(Landroidx/activity/compose/internal/BackHandlerCompat;Landroidx/navigationevent/NavigationEventInfo;)V
+PLandroidx/activity/compose/internal/BackHandlerCompat$navigationEventHandler$1;->onBackCompleted()V
+PLandroidx/activity/compose/internal/BackHandlerCompat$navigationEventHandler$1;->onBackStarted(Landroidx/navigationevent/NavigationEvent;)V
+Landroidx/activity/compose/internal/BackHandlerCompat$onBackPressedCallback$1;
+SPLandroidx/activity/compose/internal/BackHandlerCompat$onBackPressedCallback$1;->(Landroidx/activity/compose/internal/BackHandlerCompat;)V
+Landroidx/activity/compose/internal/BackHandlerDispatcherCompat;
+SPLandroidx/activity/compose/internal/BackHandlerDispatcherCompat;->()V
+SPLandroidx/activity/compose/internal/BackHandlerDispatcherCompat;->(Landroidx/navigationevent/NavigationEventDispatcher;Landroidx/activity/OnBackPressedDispatcher;)V
+SPLandroidx/activity/compose/internal/BackHandlerDispatcherCompat;->addHandler(Landroidx/activity/compose/internal/BackHandlerCompat;)V
+PLandroidx/activity/compose/internal/BackHandlerDispatcherCompat;->removeHandler(Landroidx/activity/compose/internal/BackHandlerCompat;)V
+Landroidx/activity/contextaware/ContextAware;
+Landroidx/activity/contextaware/ContextAwareHelper;
+SPLandroidx/activity/contextaware/ContextAwareHelper;->()V
+SPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
+SPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V
+Landroidx/activity/contextaware/OnContextAvailableListener;
+Landroidx/activity/result/ActivityResult;
+Landroidx/activity/result/ActivityResultCallback;
+Landroidx/activity/result/ActivityResultCaller;
+Landroidx/activity/result/ActivityResultLauncher;
+SPLandroidx/activity/result/ActivityResultLauncher;->()V
+Landroidx/activity/result/ActivityResultRegistry;
+SPLandroidx/activity/result/ActivityResultRegistry;->()V
+SPLandroidx/activity/result/ActivityResultRegistry;->()V
+SPLandroidx/activity/result/ActivityResultRegistry;->bindRcKey(ILjava/lang/String;)V
+SPLandroidx/activity/result/ActivityResultRegistry;->generateRandomNumber$lambda$0()Ljava/lang/Integer;
+SPLandroidx/activity/result/ActivityResultRegistry;->generateRandomNumber()I
+SPLandroidx/activity/result/ActivityResultRegistry;->register(Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)Landroidx/activity/result/ActivityResultLauncher;
+SPLandroidx/activity/result/ActivityResultRegistry;->registerKey(Ljava/lang/String;)V
+PLandroidx/activity/result/ActivityResultRegistry;->unregister$activity(Ljava/lang/String;)V
+Landroidx/activity/result/ActivityResultRegistry$$ExternalSyntheticLambda1;
+SPLandroidx/activity/result/ActivityResultRegistry$$ExternalSyntheticLambda1;->()V
+SPLandroidx/activity/result/ActivityResultRegistry$$ExternalSyntheticLambda1;->invoke()Ljava/lang/Object;
+Landroidx/activity/result/ActivityResultRegistry$CallbackAndContract;
+SPLandroidx/activity/result/ActivityResultRegistry$CallbackAndContract;->(Landroidx/activity/result/ActivityResultCallback;Landroidx/activity/result/contract/ActivityResultContract;)V
+Landroidx/activity/result/ActivityResultRegistry$Companion;
+SPLandroidx/activity/result/ActivityResultRegistry$Companion;->()V
+SPLandroidx/activity/result/ActivityResultRegistry$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+Landroidx/activity/result/ActivityResultRegistry$register$3;
+SPLandroidx/activity/result/ActivityResultRegistry$register$3;->(Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;)V
+PLandroidx/activity/result/ActivityResultRegistry$register$3;->unregister()V
+Landroidx/activity/result/ActivityResultRegistryOwner;
+Landroidx/activity/result/contract/ActivityResultContract;
+SPLandroidx/activity/result/contract/ActivityResultContract;->()V
+Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;
+SPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;->()V
+SPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;->()V
+Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion;
+SPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion;->()V
+SPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+Landroidx/activity/result/contract/ActivityResultContracts$RequestPermission;
+SPLandroidx/activity/result/contract/ActivityResultContracts$RequestPermission;->()V
+Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;
+SPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;->()V
+SPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;->()V
+Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion;
+SPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion;->()V
+SPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+Landroidx/appcompat/app/ActionBarDrawerToggle$DelegateProvider;
+Landroidx/appcompat/app/AppCompatActivity;
+Landroidx/appcompat/app/AppCompatCallback;
+Landroidx/appcompat/app/AppCompatDelegate;
+SPLandroidx/appcompat/app/AppCompatDelegate;->()V
+SPLandroidx/appcompat/app/AppCompatDelegate;->applyDayNightToActiveDelegates()V
+SPLandroidx/appcompat/app/AppCompatDelegate;->setDefaultNightMode(I)V
+Landroidx/appcompat/app/AppCompatDelegate$SerialExecutor;
+SPLandroidx/appcompat/app/AppCompatDelegate$SerialExecutor;->(Ljava/util/concurrent/Executor;)V
+Landroidx/appcompat/app/AppCompatDelegate$ThreadPerTaskExecutor;
+SPLandroidx/appcompat/app/AppCompatDelegate$ThreadPerTaskExecutor;->()V
+Landroidx/arch/core/executor/ArchTaskExecutor;
+SPLandroidx/arch/core/executor/ArchTaskExecutor;->()V
+SPLandroidx/arch/core/executor/ArchTaskExecutor;->()V
+SPLandroidx/arch/core/executor/ArchTaskExecutor;->executeOnDiskIO(Ljava/lang/Runnable;)V
+SPLandroidx/arch/core/executor/ArchTaskExecutor;->getIOThreadExecutor()Ljava/util/concurrent/Executor;
+SPLandroidx/arch/core/executor/ArchTaskExecutor;->getInstance()Landroidx/arch/core/executor/ArchTaskExecutor;
+SPLandroidx/arch/core/executor/ArchTaskExecutor;->isMainThread()Z
+SPLandroidx/arch/core/executor/ArchTaskExecutor;->lambda$static$1(Ljava/lang/Runnable;)V
+SPLandroidx/arch/core/executor/ArchTaskExecutor;->postToMainThread(Ljava/lang/Runnable;)V
+Landroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda0;
+SPLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda0;->()V
+Landroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;
+SPLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;->()V
+SPLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;->execute(Ljava/lang/Runnable;)V
+Landroidx/arch/core/executor/DefaultTaskExecutor;
+SPLandroidx/arch/core/executor/DefaultTaskExecutor;->()V
+SPLandroidx/arch/core/executor/DefaultTaskExecutor;->createAsync(Landroid/os/Looper;)Landroid/os/Handler;
+SPLandroidx/arch/core/executor/DefaultTaskExecutor;->executeOnDiskIO(Ljava/lang/Runnable;)V
+SPLandroidx/arch/core/executor/DefaultTaskExecutor;->isMainThread()Z
+SPLandroidx/arch/core/executor/DefaultTaskExecutor;->postToMainThread(Ljava/lang/Runnable;)V
+Landroidx/arch/core/executor/DefaultTaskExecutor$1;
+SPLandroidx/arch/core/executor/DefaultTaskExecutor$1;->(Landroidx/arch/core/executor/DefaultTaskExecutor;)V
+SPLandroidx/arch/core/executor/DefaultTaskExecutor$1;->newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;
+Landroidx/arch/core/executor/DefaultTaskExecutor$Api28Impl;
+SPLandroidx/arch/core/executor/DefaultTaskExecutor$Api28Impl;->createAsync(Landroid/os/Looper;)Landroid/os/Handler;
+Landroidx/arch/core/executor/TaskExecutor;
+SPLandroidx/arch/core/executor/TaskExecutor;->()V
+Landroidx/arch/core/internal/SafeIterableMap;
+SPLandroidx/arch/core/internal/SafeIterableMap;->()V
+SPLandroidx/arch/core/internal/SafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
+SPLandroidx/arch/core/internal/SafeIterableMap;->iteratorWithAdditions()Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
+SPLandroidx/arch/core/internal/SafeIterableMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
+SPLandroidx/arch/core/internal/SafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/arch/core/internal/SafeIterableMap$Entry;
+SPLandroidx/arch/core/internal/SafeIterableMap$Entry;->(Ljava/lang/Object;Ljava/lang/Object;)V
+PLandroidx/arch/core/internal/SafeIterableMap$Entry;->getValue()Ljava/lang/Object;
+Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
+SPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->(Landroidx/arch/core/internal/SafeIterableMap;)V
+SPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->hasNext()Z
+PLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/lang/Object;
+PLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/util/Map$Entry;
+Landroidx/arch/core/internal/SafeIterableMap$SupportRemove;
+SPLandroidx/arch/core/internal/SafeIterableMap$SupportRemove;->()V
+Landroidx/arch/core/util/Function;
+Landroidx/biometric/BiometricManager;
+SPLandroidx/biometric/BiometricManager;->(Landroidx/biometric/BiometricManager$Injector;)V
+SPLandroidx/biometric/BiometricManager;->canAuthenticate(I)I
+SPLandroidx/biometric/BiometricManager;->from(Landroid/content/Context;)Landroidx/biometric/BiometricManager;
+SPLandroidx/biometric/BiometricManager;->isIdentityCheckAvailable()Z
+Landroidx/biometric/BiometricManager$Api29Impl;
+SPLandroidx/biometric/BiometricManager$Api29Impl;->create(Landroid/content/Context;)Landroid/hardware/biometrics/BiometricManager;
+Landroidx/biometric/BiometricManager$Api30Impl;
+SPLandroidx/biometric/BiometricManager$Api30Impl;->canAuthenticate(Landroid/hardware/biometrics/BiometricManager;I)I
+Landroidx/biometric/BiometricManager$DefaultInjector;
+SPLandroidx/biometric/BiometricManager$DefaultInjector;->(Landroid/content/Context;)V
+SPLandroidx/biometric/BiometricManager$DefaultInjector;->getBiometricManager()Landroid/hardware/biometrics/BiometricManager;
+Landroidx/biometric/BiometricManager$Injector;
+PLandroidx/biometric/internal/AuthenticationResultRegistryKt$$ExternalSyntheticBackportWithForwarding1;->m()I
+Landroidx/biometric/utils/ErrorUtils;
+SPLandroidx/biometric/utils/ErrorUtils;->toKnownStatusCodeForCanAuthenticate(I)I
+Landroidx/camera/camera2/Camera2Config;
+SPLandroidx/camera/camera2/Camera2Config;->()V
+Landroidx/camera/camera2/Camera2Config$Companion;
+SPLandroidx/camera/camera2/Camera2Config$Companion;->()V
+SPLandroidx/camera/camera2/Camera2Config$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+SPLandroidx/camera/camera2/Camera2Config$Companion;->defaultConfig()Landroidx/camera/core/CameraXConfig;
+SPLandroidx/camera/camera2/Camera2Config$Companion;->from$default(Landroidx/camera/camera2/Camera2Config$Companion;Landroidx/camera/camera2/pipe/CameraPipe;Landroid/content/Context;Landroidx/camera/core/impl/CameraThreadConfig;ILjava/lang/Object;)Landroidx/camera/core/CameraXConfig;
+SPLandroidx/camera/camera2/Camera2Config$Companion;->from(Landroidx/camera/camera2/pipe/CameraPipe;Landroid/content/Context;Landroidx/camera/core/impl/CameraThreadConfig;)Landroidx/camera/core/CameraXConfig;
+Landroidx/camera/camera2/Camera2Config$Companion$$ExternalSyntheticLambda0;
+SPLandroidx/camera/camera2/Camera2Config$Companion$$ExternalSyntheticLambda0;->()V
+SPLandroidx/camera/camera2/Camera2Config$Companion$$ExternalSyntheticLambda0;->newInstance(Landroid/content/Context;Ljava/lang/Object;Ljava/util/Set;)Landroidx/camera/core/impl/CameraDeviceSurfaceManager;
+Landroidx/camera/camera2/Camera2Config$Companion$$ExternalSyntheticLambda1;
+SPLandroidx/camera/camera2/Camera2Config$Companion$$ExternalSyntheticLambda1;->()V
+SPLandroidx/camera/camera2/Camera2Config$Companion$$ExternalSyntheticLambda1;->newInstance(Landroid/content/Context;)Landroidx/camera/core/impl/UseCaseConfigFactory;
+Landroidx/camera/camera2/Camera2Config$DefaultProvider;
+SPLandroidx/camera/camera2/Camera2Config$DefaultProvider;->()V
+SPLandroidx/camera/camera2/Camera2Config$DefaultProvider;->getCameraXConfig()Landroidx/camera/core/CameraXConfig;
+Landroidx/camera/camera2/adapter/CameraControlAdapter;
+SPLandroidx/camera/camera2/adapter/CameraControlAdapter;->(Landroidx/camera/camera2/impl/CameraProperties;Landroidx/camera/camera2/impl/EvCompControl;Landroidx/camera/camera2/impl/FlashControl;Landroidx/camera/camera2/impl/FocusMeteringControl;Landroidx/camera/camera2/impl/StillCaptureRequestControl;Landroidx/camera/camera2/impl/TorchControl;Landroidx/camera/camera2/impl/LowLightBoostControl;Landroidx/camera/camera2/impl/ZoomControl;Landroidx/camera/camera2/adapter/ZslControl;Landroidx/camera/camera2/interop/Camera2CameraControl;Landroidx/camera/camera2/impl/UseCaseManager;Landroidx/camera/camera2/impl/UseCaseThreads;Landroidx/camera/camera2/impl/VideoUsageControl;)V
+PLandroidx/camera/camera2/adapter/CameraControlAdapter;->addInteropConfig(Landroidx/camera/core/impl/Config;)V
+PLandroidx/camera/camera2/adapter/CameraControlAdapter;->clearInteropConfig()V
+PLandroidx/camera/camera2/adapter/CameraControlAdapter;->getInteropConfig()Landroidx/camera/core/impl/Config;
+Landroidx/camera/camera2/adapter/CameraControlStateAdapter;
+SPLandroidx/camera/camera2/adapter/CameraControlStateAdapter;->(Landroidx/camera/camera2/impl/ZoomControl;Landroidx/camera/camera2/impl/EvCompControl;Landroidx/camera/camera2/impl/TorchControl;Landroidx/camera/camera2/impl/LowLightBoostControl;)V
+PLandroidx/camera/camera2/adapter/CameraControlStateAdapter;->getZoomStateLiveData()Landroidx/lifecycle/LiveData;
+Landroidx/camera/camera2/adapter/CameraCoordinatorAdapter;
+SPLandroidx/camera/camera2/adapter/CameraCoordinatorAdapter;->(Landroidx/camera/camera2/pipe/CameraPipe;Landroidx/camera/camera2/pipe/CameraDevices;)V
+SPLandroidx/camera/camera2/adapter/CameraCoordinatorAdapter;->getCameraOperatingMode()I
+SPLandroidx/camera/camera2/adapter/CameraCoordinatorAdapter;->init(Landroidx/camera/core/impl/CameraRepository;)V
+SPLandroidx/camera/camera2/adapter/CameraCoordinatorAdapter;->onCamerasUpdated(Ljava/util/List;)V
+PLandroidx/camera/camera2/adapter/CameraCoordinatorAdapter;->removePendingCameraInfo(Landroidx/camera/core/CameraInfo;)V
+SPLandroidx/camera/camera2/adapter/CameraCoordinatorAdapter;->setCameraOperatingMode(I)V
+Landroidx/camera/camera2/adapter/CameraFactoryAdapter;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->(Lkotlin/Lazy;Landroid/content/Context;Landroidx/camera/core/impl/CameraThreadConfig;Landroidx/camera/camera2/impl/CameraInteropStateCallbackRepository;Landroidx/camera/core/CameraSelector;Landroidx/camera/core/internal/StreamSpecsCalculator;Landroidx/camera/core/CameraXConfig;)V
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->access$getAvailableCameraIds$p(Landroidx/camera/camera2/adapter/CameraFactoryAdapter;)Ljava/util/Set;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->appComponent_delegate$lambda$0(Landroid/content/Context;Landroidx/camera/core/impl/CameraThreadConfig;Landroidx/camera/camera2/adapter/CameraFactoryAdapter;Landroidx/camera/camera2/impl/CameraInteropStateCallbackRepository;)Landroidx/camera/camera2/config/CameraAppComponent;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->calculateAvailableCameraIds(Ljava/util/List;)Ljava/util/Set;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->getAppComponent()Landroidx/camera/camera2/config/CameraAppComponent;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->getAvailableCameraIds()Ljava/util/Set;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->getAvailableCameraIds(Ljava/util/List;)Ljava/util/List;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->getCamera(Ljava/lang/String;)Landroidx/camera/core/impl/CameraInternal;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->getCameraCoordinator()Landroidx/camera/core/concurrent/CameraCoordinator;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->getCameraManager()Ljava/lang/Object;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->getCameraPresenceSource()Landroidx/camera/core/impl/Observable;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter;->onCameraIdsUpdated(Ljava/util/List;)V
+Landroidx/camera/camera2/adapter/CameraFactoryAdapter$$ExternalSyntheticLambda0;
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter$$ExternalSyntheticLambda0;->(Landroid/content/Context;Landroidx/camera/core/impl/CameraThreadConfig;Landroidx/camera/camera2/adapter/CameraFactoryAdapter;Landroidx/camera/camera2/impl/CameraInteropStateCallbackRepository;)V
+SPLandroidx/camera/camera2/adapter/CameraFactoryAdapter$$ExternalSyntheticLambda0;->invoke()Ljava/lang/Object;
+Landroidx/camera/camera2/adapter/CameraFactoryProvider;
+SPLandroidx/camera/camera2/adapter/CameraFactoryProvider;->(Landroidx/camera/camera2/pipe/CameraPipe;Landroid/content/Context;Landroidx/camera/core/impl/CameraThreadConfig;)V
+SPLandroidx/camera/camera2/adapter/CameraFactoryProvider;->access$getSharedInteropCallbacks$p(Landroidx/camera/camera2/adapter/CameraFactoryProvider;)Landroidx/camera/camera2/impl/CameraInteropStateCallbackRepository;
+SPLandroidx/camera/camera2/adapter/CameraFactoryProvider;->createCameraPipe-ck8WKOA(Landroid/content/Context;Landroidx/camera/core/impl/CameraThreadConfig;Landroidx/camera/camera2/pipe/core/DurationNs;)Landroidx/camera/camera2/pipe/CameraPipe;
+SPLandroidx/camera/camera2/adapter/CameraFactoryProvider;->newInstance$lambda$0(Landroidx/camera/camera2/adapter/CameraFactoryProvider;Landroid/content/Context;Landroidx/camera/core/impl/CameraThreadConfig;Landroidx/camera/camera2/pipe/core/DurationNs;)Landroidx/camera/camera2/pipe/CameraPipe;
+SPLandroidx/camera/camera2/adapter/CameraFactoryProvider;->newInstance(Landroid/content/Context;Landroidx/camera/core/impl/CameraThreadConfig;Landroidx/camera/core/CameraSelector;JLandroidx/camera/core/CameraXConfig;Landroidx/camera/core/internal/StreamSpecsCalculator;)Landroidx/camera/core/impl/CameraFactory;
+Landroidx/camera/camera2/adapter/CameraFactoryProvider$$ExternalSyntheticLambda0;
+SPLandroidx/camera/camera2/adapter/CameraFactoryProvider$$ExternalSyntheticLambda0;->(Landroidx/camera/camera2/adapter/CameraFactoryProvider;Landroid/content/Context;Landroidx/camera/core/impl/CameraThreadConfig;Landroidx/camera/camera2/pipe/core/DurationNs;)V
+SPLandroidx/camera/camera2/adapter/CameraFactoryProvider$$ExternalSyntheticLambda0;->invoke()Ljava/lang/Object;
+Landroidx/camera/camera2/adapter/CameraInfoAdapter;
+SPLandroidx/camera/camera2/adapter/CameraInfoAdapter;->()V
+SPLandroidx/camera/camera2/adapter/CameraInfoAdapter;->(Landroidx/camera/camera2/impl/CameraProperties;Landroidx/camera/camera2/config/CameraConfig;Landroidx/camera/camera2/adapter/CameraStateAdapter;Landroidx/camera/camera2/adapter/CameraControlStateAdapter;Landroidx/camera/camera2/impl/CameraCallbackMap;Landroidx/camera/camera2/impl/FocusMeteringControl;Landroidx/camera/camera2/compat/quirk/CameraQuirks;Landroidx/camera/core/impl/EncoderProfilesProvider;Landroidx/camera/camera2/compat/StreamConfigurationMapCompat;Landroidx/camera/camera2/internal/IntrinsicZoomCalculator;Landroidx/camera/core/internal/StreamSpecsCalculator;)V
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter;->addSessionCaptureCallback(Ljava/util/concurrent/Executor;Landroidx/camera/core/impl/CameraCaptureCallback;)V
+SPLandroidx/camera/camera2/adapter/CameraInfoAdapter;->getCameraId()Ljava/lang/String;
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter;->getCameraQuirks()Landroidx/camera/core/impl/Quirks;
+SPLandroidx/camera/camera2/adapter/CameraInfoAdapter;->getCameraSelectorLensFacing(I)I
+SPLandroidx/camera/camera2/adapter/CameraInfoAdapter;->getCameraState()Landroidx/lifecycle/LiveData;
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter;->getImplementationType()Ljava/lang/String;
+SPLandroidx/camera/camera2/adapter/CameraInfoAdapter;->getLensFacing()I
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter;->getSensorRect()Landroid/graphics/Rect;
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter;->getSensorRotationDegrees()I
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter;->getSensorRotationDegrees(I)I
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter;->getSupportedResolutions(I)Ljava/util/List;
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter;->getZoomState()Landroidx/lifecycle/LiveData;
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter;->isLegacyDevice()Z
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter;->isLegacyDevice_delegate$lambda$0(Landroidx/camera/camera2/adapter/CameraInfoAdapter;)Z
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter;->removeSessionCaptureCallback(Landroidx/camera/core/impl/CameraCaptureCallback;)V
+Landroidx/camera/camera2/adapter/CameraInfoAdapter$$ExternalSyntheticLambda0;
+SPLandroidx/camera/camera2/adapter/CameraInfoAdapter$$ExternalSyntheticLambda0;->(Landroidx/camera/camera2/adapter/CameraInfoAdapter;)V
+Landroidx/camera/camera2/adapter/CameraInfoAdapter$$ExternalSyntheticLambda1;
+SPLandroidx/camera/camera2/adapter/CameraInfoAdapter$$ExternalSyntheticLambda1;->(Landroidx/camera/camera2/adapter/CameraInfoAdapter;)V
+PLandroidx/camera/camera2/adapter/CameraInfoAdapter$$ExternalSyntheticLambda1;->invoke()Ljava/lang/Object;
+Landroidx/camera/camera2/adapter/CameraInfoAdapter$$ExternalSyntheticLambda2;
+SPLandroidx/camera/camera2/adapter/CameraInfoAdapter$$ExternalSyntheticLambda2;->(Landroidx/camera/camera2/adapter/CameraInfoAdapter;)V
+Landroidx/camera/camera2/adapter/CameraInfoAdapter$Companion;
+SPLandroidx/camera/camera2/adapter/CameraInfoAdapter$Companion;->()V
+SPLandroidx/camera/camera2/adapter/CameraInfoAdapter$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+Landroidx/camera/camera2/adapter/CameraInternalAdapter;
+SPLandroidx/camera/camera2/adapter/CameraInternalAdapter;->(Landroidx/camera/camera2/config/CameraConfig;Landroidx/camera/camera2/impl/UseCaseManager;Landroidx/camera/core/impl/CameraInfoInternal;Landroidx/camera/core/impl/CameraControlInternal;Landroidx/camera/camera2/impl/UseCaseThreads;Landroidx/camera/camera2/adapter/CameraStateAdapter;)V
+SPLandroidx/camera/camera2/adapter/CameraInternalAdapter;->access$getCameraId$p(Landroidx/camera/camera2/adapter/CameraInternalAdapter;)Ljava/lang/String;
+PLandroidx/camera/camera2/adapter/CameraInternalAdapter;->attachUseCases(Ljava/util/Collection;)V
+SPLandroidx/camera/camera2/adapter/CameraInternalAdapter;->detachUseCases(Ljava/util/Collection;)V
+SPLandroidx/camera/camera2/adapter/CameraInternalAdapter;->getCameraControlInternal()Landroidx/camera/core/impl/CameraControlInternal;
+SPLandroidx/camera/camera2/adapter/CameraInternalAdapter;->getCameraInfoInternal()Landroidx/camera/core/impl/CameraInfoInternal;
+PLandroidx/camera/camera2/adapter/CameraInternalAdapter;->getCameraState()Landroidx/camera/core/impl/Observable;
+PLandroidx/camera/camera2/adapter/CameraInternalAdapter;->isRemoved()Z
+PLandroidx/camera/camera2/adapter/CameraInternalAdapter;->onUseCaseActive(Landroidx/camera/core/UseCase;)V
+PLandroidx/camera/camera2/adapter/CameraInternalAdapter;->onUseCaseInactive(Landroidx/camera/core/UseCase;)V
+PLandroidx/camera/camera2/adapter/CameraInternalAdapter;->setActiveResumingMode(Z)V
+SPLandroidx/camera/camera2/adapter/CameraInternalAdapter;->setCameraGraphCreationMode$camera_camera2(Z)V
+PLandroidx/camera/camera2/adapter/CameraInternalAdapter;->setExtendedConfig(Landroidx/camera/core/impl/CameraConfig;)V
+SPLandroidx/camera/camera2/adapter/CameraInternalAdapter;->setPrimary(Z)V
+SPLandroidx/camera/camera2/adapter/CameraInternalAdapter;->toString()Ljava/lang/String;
+Landroidx/camera/camera2/adapter/CameraInternalAdapterKt;
+SPLandroidx/camera/camera2/adapter/CameraInternalAdapterKt;->()V
+SPLandroidx/camera/camera2/adapter/CameraInternalAdapterKt;->getCameraAdapterIds()Lkotlinx/atomicfu/AtomicInt;
+Landroidx/camera/camera2/adapter/CameraStateAdapter;
+SPLandroidx/camera/camera2/adapter/CameraStateAdapter;->()V
+SPLandroidx/camera/camera2/adapter/CameraStateAdapter;->()V
+PLandroidx/camera/camera2/adapter/CameraStateAdapter;->access$getCurrentGraph$p(Landroidx/camera/camera2/adapter/CameraStateAdapter;)Landroidx/camera/camera2/pipe/CameraGraph;
+PLandroidx/camera/camera2/adapter/CameraStateAdapter;->calculateNextState$camera_camera2(Landroidx/camera/core/impl/CameraInternal$State;Landroidx/camera/camera2/pipe/GraphState;)Landroidx/camera/camera2/adapter/CameraStateAdapter$CombinedCameraState;
+PLandroidx/camera/camera2/adapter/CameraStateAdapter;->getCameraInternalState$camera_camera2()Landroidx/camera/core/impl/LiveDataObservable;
+SPLandroidx/camera/camera2/adapter/CameraStateAdapter;->getCameraState$camera_camera2()Landroidx/lifecycle/MutableLiveData;
+PLandroidx/camera/camera2/adapter/CameraStateAdapter;->handleStateTransition(Landroidx/camera/camera2/pipe/CameraGraph;Landroidx/camera/camera2/pipe/GraphState;)V
+PLandroidx/camera/camera2/adapter/CameraStateAdapter;->onGraphStateUpdated(Landroidx/camera/camera2/pipe/CameraGraph;Landroidx/camera/camera2/pipe/GraphState;)V
+PLandroidx/camera/camera2/adapter/CameraStateAdapter;->onGraphUpdated(Landroidx/camera/camera2/pipe/CameraGraph;)V
+SPLandroidx/camera/camera2/adapter/CameraStateAdapter;->postCameraState$default(Landroidx/camera/camera2/adapter/CameraStateAdapter;Landroidx/camera/core/impl/CameraInternal$State;Landroidx/camera/core/CameraState$StateError;ILjava/lang/Object;)V
+SPLandroidx/camera/camera2/adapter/CameraStateAdapter;->postCameraState(Landroidx/camera/core/impl/CameraInternal$State;Landroidx/camera/core/CameraState$StateError;)V
+PLandroidx/camera/camera2/adapter/CameraStateAdapter$CombinedCameraState;->(Landroidx/camera/core/impl/CameraInternal$State;Landroidx/camera/core/CameraState$StateError;)V
+PLandroidx/camera/camera2/adapter/CameraStateAdapter$CombinedCameraState;->(Landroidx/camera/core/impl/CameraInternal$State;Landroidx/camera/core/CameraState$StateError;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/camera/camera2/adapter/CameraStateAdapter$CombinedCameraState;->getError()Landroidx/camera/core/CameraState$StateError;
+PLandroidx/camera/camera2/adapter/CameraStateAdapter$CombinedCameraState;->getState()Landroidx/camera/core/impl/CameraInternal$State;
+PLandroidx/camera/camera2/adapter/CameraStateAdapter$CombinedCameraState;->toString()Ljava/lang/String;
+Landroidx/camera/camera2/adapter/CameraStateAdapter$Companion;
+SPLandroidx/camera/camera2/adapter/CameraStateAdapter$Companion;->()V
+SPLandroidx/camera/camera2/adapter/CameraStateAdapter$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+SPLandroidx/camera/camera2/adapter/CameraStateAdapter$Companion;->setOrPostValue$camera_camera2(Landroidx/lifecycle/MutableLiveData;Landroidx/camera/core/CameraState;)V
+SPLandroidx/camera/camera2/adapter/CameraStateAdapter$Companion;->toCameraState$camera_camera2(Landroidx/camera/core/impl/CameraInternal$State;)Landroidx/camera/core/CameraState$Type;
+Landroidx/camera/camera2/adapter/CameraStateAdapter$Companion$WhenMappings;
+SPLandroidx/camera/camera2/adapter/CameraStateAdapter$Companion$WhenMappings;->()V
+PLandroidx/camera/camera2/adapter/CameraStateAdapter$WhenMappings;->()V
+Landroidx/camera/camera2/adapter/CameraSurfaceAdapter;
+SPLandroidx/camera/camera2/adapter/CameraSurfaceAdapter;->(Landroid/content/Context;Ljava/lang/Object;Ljava/util/Set;)V
+SPLandroidx/camera/camera2/adapter/CameraSurfaceAdapter;->buildSurfaceCombinations(Ljava/util/List;)Ljava/util/Map;
+PLandroidx/camera/camera2/adapter/CameraSurfaceAdapter;->checkIfSupportedCombinationExist$camera_camera2(Ljava/lang/String;)Z
+PLandroidx/camera/camera2/adapter/CameraSurfaceAdapter;->getSuggestedStreamSpecs(ILjava/lang/String;Ljava/util/List;Ljava/util/Map;Landroidx/camera/core/impl/stabilization/VideoStabilization;ZZZ)Landroidx/camera/core/impl/SurfaceStreamSpecQueryResult;
+SPLandroidx/camera/camera2/adapter/CameraSurfaceAdapter;->onCamerasUpdated(Ljava/util/List;)V
+Landroidx/camera/camera2/adapter/CameraUseCaseAdapter;
+SPLandroidx/camera/camera2/adapter/CameraUseCaseAdapter;->(Landroid/content/Context;)V
+PLandroidx/camera/camera2/adapter/CameraUseCaseAdapter;->getConfig(Landroidx/camera/core/impl/UseCaseConfigFactory$CaptureType;I)Landroidx/camera/core/impl/Config;
+PLandroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultCaptureOptionsUnpacker;->()V
+PLandroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultCaptureOptionsUnpacker;->()V
+PLandroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultCaptureOptionsUnpacker;->access$getINSTANCE$cp()Landroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultCaptureOptionsUnpacker;
+PLandroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultCaptureOptionsUnpacker$Companion;->()V
+PLandroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultCaptureOptionsUnpacker$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultCaptureOptionsUnpacker$Companion;->getINSTANCE()Landroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultCaptureOptionsUnpacker;
+Landroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultSessionOptionsUnpacker;
+SPLandroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultSessionOptionsUnpacker;->()V
+SPLandroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultSessionOptionsUnpacker;->()V
+PLandroidx/camera/camera2/adapter/CameraUseCaseAdapter$DefaultSessionOptionsUnpacker;->unpack(Landroid/util/Size;Landroidx/camera/core/impl/UseCaseConfig;Landroidx/camera/core/impl/SessionConfig$Builder;)V
+PLandroidx/camera/camera2/adapter/CameraUseCaseAdapter$WhenMappings;->()V
+PLandroidx/camera/camera2/adapter/CaptureConfigAdapter;->()V
+PLandroidx/camera/camera2/adapter/CaptureConfigAdapter;->(Landroidx/camera/camera2/impl/CameraProperties;Landroidx/camera/camera2/config/UseCaseGraphContext;Landroidx/camera/camera2/adapter/ZslControl;Landroidx/camera/camera2/impl/UseCaseThreads;Landroidx/camera/camera2/compat/workaround/TemplateParamsOverride;)V
+PLandroidx/camera/camera2/adapter/CaptureConfigAdapter$Companion;->()V
+PLandroidx/camera/camera2/adapter/CaptureConfigAdapter$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/camera/camera2/adapter/CaptureResultAdapter;->(Landroidx/camera/camera2/pipe/RequestMetadata;JLandroidx/camera/camera2/pipe/FrameInfo;)V
+PLandroidx/camera/camera2/adapter/CaptureResultAdapter;->(Landroidx/camera/camera2/pipe/RequestMetadata;JLandroidx/camera/camera2/pipe/FrameInfo;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->$r8$lambda$jVJCEkJI0ZZBOGn-an7ETARyhJY(Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;Lkotlinx/coroutines/Deferred;Ljava/lang/Throwable;)Lkotlin/Unit;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->$r8$lambda$yh7VCNLWmlYjZayiRXB7r-NOQlQ(Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;Ljava/lang/Throwable;)Lkotlin/Unit;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->asListenableFuture$default(Lkotlinx/coroutines/Job;Ljava/lang/Object;ILjava/lang/Object;)Lcom/google/common/util/concurrent/ListenableFuture;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->asListenableFuture$lambda$0$0(Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;Ljava/lang/Throwable;)Lkotlin/Unit;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->asListenableFuture$lambda$0(Lkotlinx/coroutines/Job;Ljava/lang/Object;Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;)Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->asListenableFuture$lambda$1$0(Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;Lkotlinx/coroutines/Deferred;Ljava/lang/Throwable;)Lkotlin/Unit;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->asListenableFuture$lambda$1(Lkotlinx/coroutines/Deferred;Ljava/lang/Object;Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;)Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->asListenableFuture(Lkotlinx/coroutines/Deferred;Ljava/lang/Object;)Lcom/google/common/util/concurrent/ListenableFuture;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->asListenableFuture(Lkotlinx/coroutines/Job;Ljava/lang/Object;)Lcom/google/common/util/concurrent/ListenableFuture;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->completeFailing(Lkotlinx/coroutines/CompletableDeferred;Ljava/lang/Throwable;)V
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->propagateCompletion(Lkotlinx/coroutines/Deferred;Lkotlinx/coroutines/CompletableDeferred;Ljava/lang/Throwable;)V
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->propagateTo$lambda$0(Lkotlinx/coroutines/Deferred;Lkotlinx/coroutines/CompletableDeferred;Ljava/lang/Throwable;)Lkotlin/Unit;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt;->propagateTo(Lkotlinx/coroutines/Deferred;Lkotlinx/coroutines/CompletableDeferred;)V
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt$$ExternalSyntheticLambda0;->(Lkotlinx/coroutines/Job;Ljava/lang/Object;)V
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt$$ExternalSyntheticLambda0;->attachCompleter(Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;)Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt$$ExternalSyntheticLambda1;->(Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;)V
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt$$ExternalSyntheticLambda1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt$$ExternalSyntheticLambda3;->(Lkotlinx/coroutines/Deferred;Lkotlinx/coroutines/CompletableDeferred;)V
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt$$ExternalSyntheticLambda3;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt$$ExternalSyntheticLambda4;->(Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;Lkotlinx/coroutines/Deferred;)V
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt$$ExternalSyntheticLambda4;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt$$ExternalSyntheticLambda5;->(Lkotlinx/coroutines/Deferred;Ljava/lang/Object;)V
+PLandroidx/camera/camera2/adapter/CoroutineAdaptersKt$$ExternalSyntheticLambda5;->attachCompleter(Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;)Ljava/lang/Object;
+Landroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter;
+SPLandroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter;->()V
+SPLandroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter;->(Ljava/lang/String;Landroidx/camera/core/impl/Quirks;)V
+SPLandroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter;->getAll(I)Landroidx/camera/core/impl/EncoderProfilesProxy;
+SPLandroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter;->getProfilesInternal(I)Landroidx/camera/core/impl/EncoderProfilesProxy;
+SPLandroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter;->hasProfile(I)Z
+SPLandroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter;->isEncoderProfilesResolutionValidInQuirk(Landroidx/camera/core/impl/EncoderProfilesProxy;)Z
+Landroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter$Api31Impl;
+SPLandroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter$Api31Impl;->()V
+SPLandroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter$Api31Impl;->()V
+SPLandroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter$Api31Impl;->getAll(Ljava/lang/String;I)Landroid/media/EncoderProfiles;
+Landroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter$Companion;
+SPLandroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter$Companion;->()V
+SPLandroidx/camera/camera2/adapter/EncoderProfilesProviderAdapter$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+Landroidx/camera/camera2/adapter/EvCompValue;
+SPLandroidx/camera/camera2/adapter/EvCompValue;->(ZILandroid/util/Range;Landroid/util/Rational;)V
+PLandroidx/camera/camera2/adapter/EvCompValue;->copy$default(Landroidx/camera/camera2/adapter/EvCompValue;ZILandroid/util/Range;Landroid/util/Rational;ILjava/lang/Object;)Landroidx/camera/camera2/adapter/EvCompValue;
+PLandroidx/camera/camera2/adapter/EvCompValue;->copy(ZILandroid/util/Range;Landroid/util/Rational;)Landroidx/camera/camera2/adapter/EvCompValue;
+PLandroidx/camera/camera2/adapter/EvCompValue;->updateIndex$camera_camera2(I)Landroidx/camera/camera2/adapter/EvCompValue;
+PLandroidx/camera/camera2/adapter/GraphStateToCameraStateAdapter;->(Landroidx/camera/camera2/adapter/CameraStateAdapter;)V
+PLandroidx/camera/camera2/adapter/GraphStateToCameraStateAdapter;->getCameraGraph()Landroidx/camera/camera2/pipe/CameraGraph;
+PLandroidx/camera/camera2/adapter/GraphStateToCameraStateAdapter;->onGraphStarted()V
+PLandroidx/camera/camera2/adapter/GraphStateToCameraStateAdapter;->onGraphStarting()V
+PLandroidx/camera/camera2/adapter/GraphStateToCameraStateAdapter;->onGraphStopped()V
+PLandroidx/camera/camera2/adapter/GraphStateToCameraStateAdapter;->onGraphStopping()V
+PLandroidx/camera/camera2/adapter/GraphStateToCameraStateAdapter;->setCameraGraph(Landroidx/camera/camera2/pipe/CameraGraph;)V
+Landroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;->()V
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;->()V
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;->generateSupportedCombinationList(IZZ)Ljava/util/List;
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;->get10BitSupportedCombinationList()Ljava/util/List;
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;->getConcurrentSupportedCombinationList()Ljava/util/List;
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;->getFullSupportedCombinationList()Ljava/util/List;
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;->getLegacySupportedCombinationList()Ljava/util/List;
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;->getLimitedSupportedCombinationList()Ljava/util/List;
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;->getRAWSupportedCombinationList()Ljava/util/List;
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;->getStreamUseCaseSupportedCombinationList()Ljava/util/List;
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil;->getUltraHighResolutionSupportedCombinationList()Ljava/util/List;
+Landroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil$$ExternalSyntheticLambda1;
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil$$ExternalSyntheticLambda1;->()V
+Landroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil$$ExternalSyntheticLambda2;
+SPLandroidx/camera/camera2/adapter/GuaranteedConfigurationsUtil$$ExternalSyntheticLambda2;->()V
+Landroidx/camera/camera2/adapter/PipeCameraPresenceSource;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource;->()V
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource;->(Lkotlinx/coroutines/flow/Flow;Lkotlinx/coroutines/CoroutineScope;Ljava/util/List;Landroid/content/Context;)V
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource;->access$getCameraManager$p(Landroidx/camera/camera2/adapter/PipeCameraPresenceSource;)Landroid/hardware/camera2/CameraManager;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource;->access$isMonitoring$p(Landroidx/camera/camera2/adapter/PipeCameraPresenceSource;)Ljava/util/concurrent/atomic/AtomicBoolean;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource;->access$updateData(Landroidx/camera/camera2/adapter/PipeCameraPresenceSource;Ljava/util/List;)V
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource;->fetchData$lambda$0(Landroidx/camera/camera2/adapter/PipeCameraPresenceSource;Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;)Ljava/lang/Object;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource;->fetchData()Lcom/google/common/util/concurrent/ListenableFuture;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource;->startMonitoring()V
+Landroidx/camera/camera2/adapter/PipeCameraPresenceSource$$ExternalSyntheticLambda0;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$$ExternalSyntheticLambda0;->(Landroidx/camera/camera2/adapter/PipeCameraPresenceSource;)V
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$$ExternalSyntheticLambda0;->attachCompleter(Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;)Ljava/lang/Object;
+Landroidx/camera/camera2/adapter/PipeCameraPresenceSource$Companion;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$Companion;->()V
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+Landroidx/camera/camera2/adapter/PipeCameraPresenceSource$fetchData$1$1;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$fetchData$1$1;->(Landroidx/camera/camera2/adapter/PipeCameraPresenceSource;Landroidx/concurrent/futures/CallbackToFutureAdapter$Completer;Lkotlin/coroutines/Continuation;)V
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$fetchData$1$1;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$fetchData$1$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$$inlined$map$1;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$$inlined$map$1;->(Lkotlinx/coroutines/flow/Flow;)V
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$$inlined$map$1;->collect(Lkotlinx/coroutines/flow/FlowCollector;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
+Landroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$$inlined$map$1$2;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$$inlined$map$1$2;->(Lkotlinx/coroutines/flow/FlowCollector;)V
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$$inlined$map$1$2;->emit(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
+Landroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$$inlined$map$1$2$1;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$$inlined$map$1$2$1;->(Landroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$$inlined$map$1$2;Lkotlin/coroutines/Continuation;)V
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$$inlined$map$1$2$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$2;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$2;->(Landroidx/camera/camera2/adapter/PipeCameraPresenceSource;Lkotlin/jvm/internal/Ref$BooleanRef;Lkotlin/coroutines/Continuation;)V
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$2;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$2;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$2;->invoke(Ljava/util/List;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$2;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$3;
+SPLandroidx/camera/camera2/adapter/PipeCameraPresenceSource$startMonitoring$3;->(Landroidx/camera/camera2/adapter/PipeCameraPresenceSource;Lkotlin/coroutines/Continuation;)V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->()V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->(Ljava/util/Collection;Z)V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->(Ljava/util/Collection;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->deferrableSurfaces_delegate$lambda$0(Landroidx/camera/camera2/adapter/SessionConfigAdapter;)Ljava/util/List;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->getDeferrableSurfaces()Ljava/util/List;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->getSessionConfig()Landroidx/camera/core/impl/SessionConfig;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->getStreamUseHintForContainerClass(Ljava/lang/Class;)J
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->getSurfaceToStreamUseCaseMap()Ljava/util/Map;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->getSurfaceToStreamUseCaseMapping(Ljava/util/Collection;Ljava/util/Collection;)Ljava/util/Map;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->getSurfaceToStreamUseHintMap()Ljava/util/Map;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->getSurfaceToStreamUseHintMapping(Ljava/util/Collection;)Ljava/util/Map;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->getValidSessionConfigOrNull()Landroidx/camera/core/impl/SessionConfig;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->getValidatingBuilder()Landroidx/camera/core/impl/SessionConfig$ValidatingBuilder;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->isSessionConfigValid()Z
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->reportSurfaceInvalid(Landroidx/camera/core/impl/DeferrableSurface;)V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->sessionConfig_delegate$lambda$0(Landroidx/camera/camera2/adapter/SessionConfigAdapter;)Landroidx/camera/core/impl/SessionConfig;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->surfaceToStreamUseCaseMap_delegate$lambda$0(Landroidx/camera/camera2/adapter/SessionConfigAdapter;)Ljava/util/Map;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->surfaceToStreamUseHintMap_delegate$lambda$0(Landroidx/camera/camera2/adapter/SessionConfigAdapter;)Ljava/util/Map;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter;->validatingBuilder_delegate$lambda$0(Landroidx/camera/camera2/adapter/SessionConfigAdapter;)Landroidx/camera/core/impl/SessionConfig$ValidatingBuilder;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$$ExternalSyntheticLambda0;->(Landroidx/camera/camera2/adapter/SessionConfigAdapter;)V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$$ExternalSyntheticLambda0;->invoke()Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$$ExternalSyntheticLambda1;->(Landroidx/camera/camera2/adapter/SessionConfigAdapter;)V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$$ExternalSyntheticLambda1;->invoke()Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$$ExternalSyntheticLambda2;->(Landroidx/camera/camera2/adapter/SessionConfigAdapter;)V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$$ExternalSyntheticLambda2;->invoke()Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$$ExternalSyntheticLambda3;->(Landroidx/camera/camera2/adapter/SessionConfigAdapter;)V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$$ExternalSyntheticLambda3;->invoke()Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$$ExternalSyntheticLambda4;->(Landroidx/camera/camera2/adapter/SessionConfigAdapter;)V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$$ExternalSyntheticLambda4;->invoke()Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$Companion;->()V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$Companion;->getSessionConfig(Landroidx/camera/core/UseCase;Z)Landroidx/camera/core/impl/SessionConfig;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$reportSurfaceInvalid$2;->(Landroidx/camera/core/impl/SessionConfig;Lkotlin/coroutines/Continuation;)V
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$reportSurfaceInvalid$2;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
+PLandroidx/camera/camera2/adapter/SessionConfigAdapter$reportSurfaceInvalid$2;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
+Landroidx/camera/camera2/adapter/SupportedSurfaceCombination;
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->()V
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->(Landroid/content/Context;Landroidx/camera/camera2/pipe/CameraMetadata;Landroidx/camera/core/impl/EncoderProfilesProvider;Landroidx/camera/core/featuregroup/impl/FeatureCombinationQuery;)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->access$isPreviewStabilizationSupported$p(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination;)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->applyResolutionSelectionOrderRelatedWorkarounds(Ljava/util/List;I)Ljava/util/List;
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->checkCapabilities()V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->checkSupported$default(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination;Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;Ljava/util/List;Ljava/util/Map;Ljava/util/List;Ljava/util/List;ILjava/lang/Object;)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->checkSupported(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;Ljava/util/List;Ljava/util/Map;Ljava/util/List;Ljava/util/List;)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->createFeatureSettings(IZLjava/util/Map;Landroidx/camera/core/impl/stabilization/VideoStabilization;ZZZZLandroid/util/Range;Z)Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->filterSupportedSizes$camera_camera2(Ljava/util/Map;Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;Z)Ljava/util/Map;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->findBestSizesAndFps$lambda$1(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination;Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;Ljava/util/List;Ljava/util/Map;Ljava/util/List;Ljava/util/List;)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->findBestSizesAndFps$lambda$2(Lkotlin/Lazy;)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->findBestSizesAndFps(Ljava/util/List;Ljava/util/List;Ljava/util/List;ILjava/util/List;Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;Ljava/util/List;Ljava/util/Map;Z)Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$BestSizesAndMaxFpsForConfigs;
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->generate10BitSupportedCombinationList()V
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->generateConcurrentSupportedCombinationList()V
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->generateStreamUseCaseSupportedCombinationList()V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->generateSuggestedStreamSpecMap(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$BestSizesAndMaxFpsForConfigs;Ljava/util/List;Ljava/util/List;Ljava/util/Map;Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;)Ljava/util/Map;
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->generateSupportedCombinationList()V
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->generateSurfaceSizeDefinition()V
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->generateUltraHighResolutionSupportedCombinationList()V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getAllPossibleSizeArrangements(Ljava/util/List;)Ljava/util/List;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getAndValidateIsStrictFpsRequired(ZLjava/lang/Boolean;)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getCheckingMethod(Ljava/util/Collection;Landroid/util/Range;Landroidx/camera/core/impl/stabilization/VideoStabilization;ZZ)Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$CheckingMethod;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getCombinedMaximumFps(IILandroid/util/Size;ZI)I
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getCurrentConfigFrameRateCeiling(Ljava/util/List;Ljava/util/List;Ljava/util/List;IZ)I
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getMaxFrameRate(ILandroid/util/Size;)I
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getMaxFrameRate(ILandroid/util/Size;ZI)I
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getMaxOutputSizeByFormat$camera_camera2$default(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination;Landroid/hardware/camera2/params/StreamConfigurationMap;IZLandroid/util/Rational;ILjava/lang/Object;)Landroid/util/Size;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getMaxOutputSizeByFormat$camera_camera2(Landroid/hardware/camera2/params/StreamConfigurationMap;IZLandroid/util/Rational;)Landroid/util/Size;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getMaxSupportedFpsFromAttachedSurfaces(Ljava/util/List;Z)I
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getOutputSizes(Landroid/hardware/camera2/params/StreamConfigurationMap;ILandroid/util/Rational;)[Landroid/util/Size;
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getRecordSize()Landroid/util/Size;
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getRecordSizeFromCamcorderProfile()Landroid/util/Size;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getRequiredMaxBitDepth(Ljava/util/Map;)I
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getStreamConfigurationMapCompat()Landroidx/camera/camera2/compat/StreamConfigurationMapCompat;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getSuggestedStreamSpecifications(ILjava/util/List;Ljava/util/Map;Landroidx/camera/core/impl/stabilization/VideoStabilization;ZZZ)Landroidx/camera/core/impl/SurfaceStreamSpecQueryResult;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getSupportedOutputSizesList(Ljava/util/Map;Ljava/util/List;Ljava/util/List;)Ljava/util/List;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getSurfaceCombinationsByFeatureSettings(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;)Ljava/util/List;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getSurfaceConfigList(ILjava/util/List;Ljava/util/List;Ljava/util/List;Ljava/util/List;Ljava/util/Map;Ljava/util/Map;Z)Ljava/util/List;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getSurfaceSizeDefinition$camera_camera2()Landroidx/camera/core/impl/SurfaceSizeDefinition;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getTargetFpsRange(Ljava/util/List;Ljava/util/List;Ljava/util/List;Z)Landroid/util/Range;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getUpdatedSurfaceSizeDefinitionByFormat(I)Landroidx/camera/core/impl/SurfaceSizeDefinition;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getUpdatedTargetFrameRate(Landroid/util/Range;Landroid/util/Range;Z)Landroid/util/Range;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->getUseCasesPriorityOrder(Ljava/util/List;)Ljava/util/List;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->isConfigFrameRateAcceptable(ILandroid/util/Range;I)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->isStrictFpsRequired(Ljava/util/List;Ljava/util/List;)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->isUseCasesCombinationSupported(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;Ljava/util/List;Ljava/util/Map;)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->populateReducedSizeListAndUniqueMaxFpsMap(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;Landroid/util/Size;IILandroidx/camera/core/impl/StreamUseCase;ZLjava/util/Map;Ljava/util/List;)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->populateStreamUseCaseIfSameSavedSizes(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$BestSizesAndMaxFpsForConfigs;Ljava/util/List;Ljava/util/List;Ljava/util/Map;Ljava/util/Map;Ljava/util/Map;Ljava/util/Map;)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->refreshPreviewSize()V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->resolveSpecsByCheckingMethod(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$CheckingMethod;Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;Ljava/util/List;Ljava/util/Map;Ljava/util/List;Ljava/util/List;Ljava/util/Map;Z)Landroidx/camera/core/impl/SurfaceStreamSpecQueryResult;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->resolveSpecsBySettings(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;Ljava/util/List;Ljava/util/Map;Ljava/util/List;Ljava/util/List;Ljava/util/Map;Z)Landroidx/camera/core/impl/SurfaceStreamSpecQueryResult;
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->setSurfaceSizeDefinition$camera_camera2(Landroidx/camera/core/impl/SurfaceSizeDefinition;)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->updateMaximumSizeByFormat$default(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination;Ljava/util/Map;ILandroid/util/Rational;ILjava/lang/Object;)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->updateMaximumSizeByFormat(Ljava/util/Map;ILandroid/util/Rational;)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->updateS720pOrS1440pSizeByFormat(Ljava/util/Map;Landroid/util/Size;I)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->updateUltraMaximumSizeByFormat(Ljava/util/Map;I)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination;->validateSelf(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;)Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$$ExternalSyntheticLambda2;->(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination;Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;Ljava/util/List;Ljava/util/Map;Ljava/util/List;Ljava/util/List;)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$$ExternalSyntheticLambda2;->invoke()Ljava/lang/Object;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$BestSizesAndMaxFpsForConfigs;->(Ljava/util/List;Ljava/util/List;III)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$BestSizesAndMaxFpsForConfigs;->getBestSizes()Ljava/util/List;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$BestSizesAndMaxFpsForConfigs;->getMaxFpsForAllSizes()I
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$BestSizesAndMaxFpsForConfigs;->toString()Ljava/lang/String;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$CheckingMethod;->$values()[Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$CheckingMethod;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$CheckingMethod;->()V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$CheckingMethod;->(Ljava/lang/String;I)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$CheckingMethod;->values()[Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$CheckingMethod;
+Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$Companion;
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$Companion;->()V
+SPLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$Companion;->access$isUltraHdrOn(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$Companion;Ljava/util/List;Ljava/util/Map;)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$Companion;->isUltraHdrOn(Ljava/util/List;Ljava/util/Map;)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->(IIZLandroidx/camera/core/impl/stabilization/VideoStabilization;ZZZZLandroid/util/Range;Z)V
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->copy$default(Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;IIZLandroidx/camera/core/impl/stabilization/VideoStabilization;ZZZZLandroid/util/Range;ZILjava/lang/Object;)Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->copy(IIZLandroidx/camera/core/impl/stabilization/VideoStabilization;ZZZZLandroid/util/Range;Z)Landroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->equals(Ljava/lang/Object;)Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->getCameraMode()I
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->getHasVideoCapture()Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->getRequiredMaxBitDepth()I
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->getRequiresFeatureComboQuery()Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->getTargetFpsRange()Landroid/util/Range;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->getVideoStabilization()Landroidx/camera/core/impl/stabilization/VideoStabilization;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->hashCode()I
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->isFeatureComboInvocation()Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->isHighSpeedOn()Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->isUltraHdrOn()Z
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$FeatureSettings;->toString()Ljava/lang/String;
+PLandroidx/camera/camera2/adapter/SupportedSurfaceCombination$WhenMappings;->()V
+PLandroidx/camera/camera2/adapter/ZoomValue;->(FFF)V
+PLandroidx/camera/camera2/adapter/ZoomValue;->getLinearZoom()F
+PLandroidx/camera/camera2/adapter/ZoomValue;->getZoomRatio()F
+Landroidx/camera/camera2/adapter/ZslControl;
+Landroidx/camera/camera2/adapter/ZslControlImpl;
+SPLandroidx/camera/camera2/adapter/ZslControlImpl;->()V
+SPLandroidx/camera/camera2/adapter/ZslControlImpl;->(Landroidx/camera/camera2/impl/CameraProperties;)V
+PLandroidx/camera/camera2/adapter/ZslControlImpl;->isZslSurface(Landroidx/camera/core/impl/DeferrableSurface;Landroidx/camera/core/impl/SessionConfig;)Z
+PLandroidx/camera/camera2/adapter/ZslControlImpl;->setZslDisabledByUserCaseConfig(Z)V
+Landroidx/camera/camera2/adapter/ZslControlImpl$$ExternalSyntheticLambda0;
+SPLandroidx/camera/camera2/adapter/ZslControlImpl$$ExternalSyntheticLambda0;->(Landroidx/camera/camera2/adapter/ZslControlImpl;)V
+Landroidx/camera/camera2/adapter/ZslControlImpl$$ExternalSyntheticLambda1;
+SPLandroidx/camera/camera2/adapter/ZslControlImpl$$ExternalSyntheticLambda1;->()V
+Landroidx/camera/camera2/adapter/ZslControlImpl$Companion;
+SPLandroidx/camera/camera2/adapter/ZslControlImpl$Companion;->()V
+SPLandroidx/camera/camera2/adapter/ZslControlImpl$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+Landroidx/camera/camera2/compat/AndroidRZoomCompat;
+SPLandroidx/camera/camera2/compat/AndroidRZoomCompat;->(Landroidx/camera/camera2/impl/CameraProperties;Landroid/util/Range;)V
+PLandroidx/camera/camera2/compat/AndroidRZoomCompat;->applyAsync(FLandroidx/camera/camera2/impl/UseCaseCameraRequestControl;)Lkotlinx/coroutines/Deferred;
+SPLandroidx/camera/camera2/compat/AndroidRZoomCompat;->getMaxZoomRatio()F
+SPLandroidx/camera/camera2/compat/AndroidRZoomCompat;->getMinZoomRatio()F
+PLandroidx/camera/camera2/compat/AndroidRZoomCompat;->resetAsync(Landroidx/camera/camera2/impl/UseCaseCameraRequestControl;)Lkotlinx/coroutines/Deferred;
+Landroidx/camera/camera2/compat/Camera2CameraControlCompat;
+PLandroidx/camera/camera2/compat/Camera2CameraControlCompat;->applyAsync$default(Landroidx/camera/camera2/compat/Camera2CameraControlCompat;Landroidx/camera/camera2/impl/UseCaseCameraRequestControl;ZILjava/lang/Object;)Lkotlinx/coroutines/Deferred;
+Landroidx/camera/camera2/compat/Camera2CameraControlCompatImpl;
+SPLandroidx/camera/camera2/compat/Camera2CameraControlCompatImpl;->()V
+PLandroidx/camera/camera2/compat/Camera2CameraControlCompatImpl;->addRequestOption(Landroidx/camera/camera2/interop/CaptureRequestOptions;)V
+PLandroidx/camera/camera2/compat/Camera2CameraControlCompatImpl;->applyAsync(Landroidx/camera/camera2/impl/UseCaseCameraRequestControl;Z)Lkotlinx/coroutines/Deferred;
+PLandroidx/camera/camera2/compat/Camera2CameraControlCompatImpl;->cancelCurrentTask()V
+PLandroidx/camera/camera2/compat/Camera2CameraControlCompatImpl;->cancelSignal$default(Landroidx/camera/camera2/compat/Camera2CameraControlCompatImpl;Lkotlinx/coroutines/CompletableDeferred;Ljava/lang/String;ILjava/lang/Object;)Lkotlinx/coroutines/CompletableDeferred;
+PLandroidx/camera/camera2/compat/Camera2CameraControlCompatImpl;->cancelSignal(Lkotlinx/coroutines/CompletableDeferred;Ljava/lang/String;)Lkotlinx/coroutines/CompletableDeferred;
+PLandroidx/camera/camera2/compat/Camera2CameraControlCompatImpl;->clearRequestOption()V
+SPLandroidx/camera/camera2/compat/Camera2CameraControlCompatImpl;->getRequestOption()Landroidx/camera/camera2/interop/CaptureRequestOptions;
+PLandroidx/camera/camera2/compat/Camera2CameraControlCompatImpl;->onComplete-CcXjc1I(Landroidx/camera/camera2/pipe/RequestMetadata;JLandroidx/camera/camera2/pipe/FrameInfo;)V
+Landroidx/camera/camera2/compat/DynamicRangeProfilesCompat;
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompat;->()V
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompat;->(Landroidx/camera/camera2/compat/DynamicRangeProfilesCompat$DynamicRangeProfilesCompatImpl;)V
+PLandroidx/camera/camera2/compat/DynamicRangeProfilesCompat;->getDynamicRangeCaptureRequestConstraints(Landroidx/camera/core/DynamicRange;)Ljava/util/Set;
+PLandroidx/camera/camera2/compat/DynamicRangeProfilesCompat;->getSupportedDynamicRanges()Ljava/util/Set;
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompat;->toDynamicRangeProfiles()Landroid/hardware/camera2/params/DynamicRangeProfiles;
+Landroidx/camera/camera2/compat/DynamicRangeProfilesCompat$Companion;
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompat$Companion;->()V
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompat$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompat$Companion;->fromCameraMetaData(Landroidx/camera/camera2/pipe/CameraMetadata;)Landroidx/camera/camera2/compat/DynamicRangeProfilesCompat;
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompat$Companion;->toDynamicRangesCompat(Landroid/hardware/camera2/params/DynamicRangeProfiles;)Landroidx/camera/camera2/compat/DynamicRangeProfilesCompat;
+Landroidx/camera/camera2/compat/DynamicRangeProfilesCompat$DynamicRangeProfilesCompatImpl;
+Landroidx/camera/camera2/compat/DynamicRangeProfilesCompatApi33Impl;
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompatApi33Impl;->(Landroid/hardware/camera2/params/DynamicRangeProfiles;)V
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompatApi33Impl;->unwrap()Landroid/hardware/camera2/params/DynamicRangeProfiles;
+Landroidx/camera/camera2/compat/DynamicRangeProfilesCompatBaseImpl;
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompatBaseImpl;->()V
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompatBaseImpl;->()V
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompatBaseImpl;->access$getCOMPAT_INSTANCE$cp()Landroidx/camera/camera2/compat/DynamicRangeProfilesCompat;
+PLandroidx/camera/camera2/compat/DynamicRangeProfilesCompatBaseImpl;->getDynamicRangeCaptureRequestConstraints(Landroidx/camera/core/DynamicRange;)Ljava/util/Set;
+PLandroidx/camera/camera2/compat/DynamicRangeProfilesCompatBaseImpl;->getSupportedDynamicRanges()Ljava/util/Set;
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompatBaseImpl;->unwrap()Landroid/hardware/camera2/params/DynamicRangeProfiles;
+Landroidx/camera/camera2/compat/DynamicRangeProfilesCompatBaseImpl$Companion;
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompatBaseImpl$Companion;->()V
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompatBaseImpl$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+SPLandroidx/camera/camera2/compat/DynamicRangeProfilesCompatBaseImpl$Companion;->getCOMPAT_INSTANCE()Landroidx/camera/camera2/compat/DynamicRangeProfilesCompat;
+Landroidx/camera/camera2/compat/EvCompCompat;
+Landroidx/camera/camera2/compat/EvCompCompatKt;
+SPLandroidx/camera/camera2/compat/EvCompCompatKt;->()V
+SPLandroidx/camera/camera2/compat/EvCompCompatKt;->getEMPTY_RANGE()Landroid/util/Range;
+Landroidx/camera/camera2/compat/EvCompImpl;
+PLandroidx/camera/camera2/compat/EvCompImpl;->$r8$lambda$YC4JQEnY8FmJcoebMHC7Y-8Vs38(Landroidx/camera/camera2/compat/EvCompImpl;Landroidx/camera/camera2/compat/EvCompImpl$applyAsync$3;Ljava/lang/Throwable;)Lkotlin/Unit;
+SPLandroidx/camera/camera2/compat/EvCompImpl;->(Landroidx/camera/camera2/impl/CameraProperties;Landroidx/camera/camera2/impl/UseCaseThreads;Landroidx/camera/camera2/impl/ComboRequestListener;)V
+PLandroidx/camera/camera2/compat/EvCompImpl;->applyAsync$lambda$2$0(Landroidx/camera/camera2/compat/EvCompImpl;Landroidx/camera/camera2/compat/EvCompImpl$applyAsync$3;Ljava/lang/Throwable;)Lkotlin/Unit;
+PLandroidx/camera/camera2/compat/EvCompImpl;->applyAsync(ILandroidx/camera/camera2/impl/UseCaseCameraRequestControl;Z)Lkotlinx/coroutines/Deferred;
+SPLandroidx/camera/camera2/compat/EvCompImpl;->getRange()Landroid/util/Range;
+SPLandroidx/camera/camera2/compat/EvCompImpl;->getStep()Landroid/util/Rational;
+SPLandroidx/camera/camera2/compat/EvCompImpl;->getSupported()Z
+PLandroidx/camera/camera2/compat/EvCompImpl;->stopRunningTask(Ljava/lang/Throwable;)V
+PLandroidx/camera/camera2/compat/EvCompImpl$$ExternalSyntheticLambda0;->(Landroidx/camera/camera2/compat/EvCompImpl;Landroidx/camera/camera2/compat/EvCompImpl$applyAsync$3;)V
+PLandroidx/camera/camera2/compat/EvCompImpl$$ExternalSyntheticLambda0;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
+PLandroidx/camera/camera2/compat/EvCompImpl$applyAsync$3;->(ILkotlinx/coroutines/CompletableDeferred;)V
+PLandroidx/camera/camera2/compat/EvCompImpl$applyAsync$3;->onComplete-CcXjc1I(Landroidx/camera/camera2/pipe/RequestMetadata;JLandroidx/camera/camera2/pipe/FrameInfo;)V
+Landroidx/camera/camera2/compat/StreamConfigurationMapCompat;
+SPLandroidx/camera/camera2/compat/StreamConfigurationMapCompat;->(Landroid/hardware/camera2/params/StreamConfigurationMap;Landroidx/camera/camera2/compat/workaround/OutputSizesCorrector;)V
+PLandroidx/camera/camera2/compat/StreamConfigurationMapCompat;->getOutputMinFrameDuration(ILandroid/util/Size;)J
+PLandroidx/camera/camera2/compat/StreamConfigurationMapCompat;->getOutputSizes(I)[Landroid/util/Size;
+PLandroidx/camera/camera2/compat/StreamConfigurationMapCompat;->toStreamConfigurationMap()Landroid/hardware/camera2/params/StreamConfigurationMap;
+Landroidx/camera/camera2/compat/StreamConfigurationMapCompat$StreamConfigurationMapCompatImpl;
+Landroidx/camera/camera2/compat/StreamConfigurationMapCompatApi34Impl;
+SPLandroidx/camera/camera2/compat/StreamConfigurationMapCompatApi34Impl;->(Landroid/hardware/camera2/params/StreamConfigurationMap;)V
+PLandroidx/camera/camera2/compat/StreamConfigurationMapCompatApi34Impl;->getOutputMinFrameDuration(ILandroid/util/Size;)J
+PLandroidx/camera/camera2/compat/StreamConfigurationMapCompatApi34Impl;->getOutputSizes(I)[Landroid/util/Size;
+Landroidx/camera/camera2/compat/StreamConfigurationMapCompatBaseImpl;
+SPLandroidx/camera/camera2/compat/StreamConfigurationMapCompatBaseImpl;->(Landroid/hardware/camera2/params/StreamConfigurationMap;)V
+PLandroidx/camera/camera2/compat/StreamConfigurationMapCompatBaseImpl;->getOutputMinFrameDuration(ILandroid/util/Size;)J
+PLandroidx/camera/camera2/compat/StreamConfigurationMapCompatBaseImpl;->getOutputSizes(I)[Landroid/util/Size;
+PLandroidx/camera/camera2/compat/StreamConfigurationMapCompatBaseImpl;->unwrap()Landroid/hardware/camera2/params/StreamConfigurationMap;
+Landroidx/camera/camera2/compat/ZoomCompat;
+Landroidx/camera/camera2/compat/ZoomCompat$Bindings;
+SPLandroidx/camera/camera2/compat/ZoomCompat$Bindings;->()V
+Landroidx/camera/camera2/compat/ZoomCompat$Bindings$Companion;
+SPLandroidx/camera/camera2/compat/ZoomCompat$Bindings$Companion;->()V
+SPLandroidx/camera/camera2/compat/ZoomCompat$Bindings$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+SPLandroidx/camera/camera2/compat/ZoomCompat$Bindings$Companion;->provideZoomCompat(Landroidx/camera/camera2/impl/CameraProperties;)Landroidx/camera/camera2/compat/ZoomCompat;
+Landroidx/camera/camera2/compat/ZoomCompat_Bindings_Companion_ProvideZoomCompatFactory;
+SPLandroidx/camera/camera2/compat/ZoomCompat_Bindings_Companion_ProvideZoomCompatFactory;->provideZoomCompat(Landroidx/camera/camera2/impl/CameraProperties;)Landroidx/camera/camera2/compat/ZoomCompat;
+Landroidx/camera/camera2/compat/quirk/AbnormalStreamWhenImageAnalysisBindWithTemplateRecordQuirk;
+SPLandroidx/camera/camera2/compat/quirk/AbnormalStreamWhenImageAnalysisBindWithTemplateRecordQuirk;->()V
+Landroidx/camera/camera2/compat/quirk/AbnormalStreamWhenImageAnalysisBindWithTemplateRecordQuirk$Companion;
+SPLandroidx/camera/camera2/compat/quirk/AbnormalStreamWhenImageAnalysisBindWithTemplateRecordQuirk$Companion;->()V
+SPLandroidx/camera/camera2/compat/quirk/AbnormalStreamWhenImageAnalysisBindWithTemplateRecordQuirk$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+SPLandroidx/camera/camera2/compat/quirk/AbnormalStreamWhenImageAnalysisBindWithTemplateRecordQuirk$Companion;->isEnabled()Z
+SPLandroidx/camera/camera2/compat/quirk/AbnormalStreamWhenImageAnalysisBindWithTemplateRecordQuirk$Companion;->isSamsungM55()Z
+Landroidx/camera/camera2/compat/quirk/AeFpsRangeLegacyQuirk;
+SPLandroidx/camera/camera2/compat/quirk/AeFpsRangeLegacyQuirk;->()V
+Landroidx/camera/camera2/compat/quirk/AeFpsRangeLegacyQuirk$Companion;
+SPLandroidx/camera/camera2/compat/quirk/AeFpsRangeLegacyQuirk$Companion;->()V
+SPLandroidx/camera/camera2/compat/quirk/AeFpsRangeLegacyQuirk$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+SPLandroidx/camera/camera2/compat/quirk/AeFpsRangeLegacyQuirk$Companion;->isEnabled(Landroidx/camera/camera2/pipe/CameraMetadata;)Z
+Landroidx/camera/camera2/compat/quirk/AfRegionFlipHorizontallyQuirk;
+SPLandroidx/camera/camera2/compat/quirk/AfRegionFlipHorizontallyQuirk;->()V
+Landroidx/camera/camera2/compat/quirk/AfRegionFlipHorizontallyQuirk$Companion;
+SPLandroidx/camera/camera2/compat/quirk/AfRegionFlipHorizontallyQuirk$Companion;->()V
+SPLandroidx/camera/camera2/compat/quirk/AfRegionFlipHorizontallyQuirk$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+SPLandroidx/camera/camera2/compat/quirk/AfRegionFlipHorizontallyQuirk$Companion;->isEnabled(Landroidx/camera/camera2/pipe/CameraMetadata;)Z
+Landroidx/camera/camera2/compat/quirk/AspectRatioLegacyApi21Quirk;
+SPLandroidx/camera/camera2/compat/quirk/AspectRatioLegacyApi21Quirk;->()V
+Landroidx/camera/camera2/compat/quirk/AspectRatioLegacyApi21Quirk$Companion;
+SPLandroidx/camera/camera2/compat/quirk/AspectRatioLegacyApi21Quirk$Companion;->()V
+SPLandroidx/camera/camera2/compat/quirk/AspectRatioLegacyApi21Quirk$Companion;->(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
+SPLandroidx/camera/camera2/compat/quirk/AspectRatioLegacyApi21Quirk$Companion;->isEnabled(Landroidx/camera/camera2/pipe/CameraMetadata;)Z
+Landroidx/camera/camera2/compat/quirk/CamcorderProfileResolutionQuirk;
+SPLandroidx/camera/camera2/compat/quirk/CamcorderProfileResolutionQuirk;->()V
+Landroidx/camera/camera2/compat/quirk/CamcorderProfileResolutionQuirk$Companion;
+SPLandroidx/camera/camera2/compat/quirk/CamcorderProfileResolutionQuirk$Companion;->()V
+SPLandroidx/camera/camera2/compat/quirk/CamcorderProfileResolutionQuirk$Companion;->