Full Code of skydoves/gemini-android for AI

main 072090994530 cached
142 files
6.8 MB
1.8M tokens
1 requests
Download .txt
Showing preview only (7,177K chars total). Download the full file or copy to clipboard to get everything.
Repository: skydoves/gemini-android
Branch: main
Commit: 072090994530
Files: 142
Total size: 6.8 MB

Directory structure:
gitextract_864mlkx4/

├── .editorconfig
├── .github/
│   ├── CODEOWNERS
│   ├── FUNDING.yml
│   ├── dependabot.yml
│   ├── pull_request_template.md
│   └── workflows/
│       ├── android.yml
│       └── baseline-profile.yml
├── .gitignore
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── app/
│   ├── .gitignore
│   ├── build.gradle.kts
│   ├── proguard-rules.pro
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── kotlin/
│       │   │   └── com/
│       │   │       └── skydoves/
│       │   │           └── gemini/
│       │   │               ├── GeminiApp.kt
│       │   │               ├── MainActivity.kt
│       │   │               ├── di/
│       │   │               │   ├── ChatEntryPoint.kt
│       │   │               │   └── ChatModule.kt
│       │   │               ├── initializer/
│       │   │               │   ├── StreamChatInitializer.kt
│       │   │               │   └── StreamLogInitializer.kt
│       │   │               ├── navigation/
│       │   │               │   ├── GeminiNavHost.kt
│       │   │               │   └── GeminiNavigation.kt
│       │   │               └── ui/
│       │   │                   └── GeminiMain.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   ├── ic_launcher_background.xml
│       │       │   └── ic_launcher_foreground.xml
│       │       ├── layout/
│       │       │   └── activity_main.xml
│       │       ├── mipmap-anydpi-v26/
│       │       │   ├── ic_launcher.xml
│       │       │   └── ic_launcher_round.xml
│       │       ├── values/
│       │       │   ├── colors.xml
│       │       │   ├── strings.xml
│       │       │   └── themes.xml
│       │       ├── values-night/
│       │       │   └── themes.xml
│       │       └── xml/
│       │           ├── backup_rules.xml
│       │           └── data_extraction_rules.xml
│       └── release/
│           └── generated/
│               └── baselineProfiles/
│                   ├── baseline-prof.txt
│                   └── startup-prof.txt
├── baseline-profile/
│   ├── .gitignore
│   ├── build.gradle.kts
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           └── java/
│               └── com/
│                   └── skydoves/
│                       └── gemini/
│                           └── baselineprofile/
│                               └── BaselineProfileGenerator.kt
├── build-logic/
│   ├── convention/
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           └── kotlin/
│   │               ├── AndroidApplicationComposeConventionPlugin.kt
│   │               ├── AndroidApplicationConventionPlugin.kt
│   │               ├── AndroidFeatureConventionPlugin.kt
│   │               ├── AndroidHiltConventionPlugin.kt
│   │               ├── AndroidLibraryComposeConventionPlugin.kt
│   │               ├── AndroidLibraryConventionPlugin.kt
│   │               ├── SpotlessConventionPlugin.kt
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           ├── AndroidCompose.kt
│   │                           └── KotlinAndroid.kt
│   ├── gradle/
│   │   └── wrapper/
│   │       ├── gradle-wrapper.jar
│   │       └── gradle-wrapper.properties
│   ├── gradle.properties
│   └── settings.gradle.kts
├── build.gradle.kts
├── buildSrc/
│   ├── build.gradle.kts
│   └── src/
│       └── main/
│           └── kotlin/
│               └── Configurations.kt
├── core/
│   ├── data/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── core/
│   │                               └── data/
│   │                                   ├── chat/
│   │                                   │   └── ChatModels.kt
│   │                                   ├── coroutines/
│   │                                   │   ├── Flow.kt
│   │                                   │   └── WhileSubscribedOrRetained.kt
│   │                                   ├── di/
│   │                                   │   └── DataModule.kt
│   │                                   ├── repository/
│   │                                   │   ├── ChannelRepository.kt
│   │                                   │   ├── ChannelRepositoryImpl.kt
│   │                                   │   ├── ChatRepository.kt
│   │                                   │   └── ChatRepositoryImpl.kt
│   │                                   └── utils/
│   │                                       └── Strings.kt
│   ├── database/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   ├── schemas/
│   │   │   └── com.skydoves.gemini.core.database.GeminiDatabase/
│   │   │       └── 1.json
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── core/
│   │                               └── database/
│   │                                   ├── GeminiChannelEntity.kt
│   │                                   ├── GeminiDao.kt
│   │                                   ├── GeminiDatabase.kt
│   │                                   ├── GeminiModelConverter.kt
│   │                                   └── di/
│   │                                       └── DatabaseModule.kt
│   ├── datastore/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── core/
│   │                               └── datastore/
│   │                                   ├── DataStore.kt
│   │                                   ├── PreferenceDataStore.kt
│   │                                   └── di/
│   │                                       └── DataStoreModule.kt
│   ├── designsystem/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           ├── kotlin/
│   │           │   └── com/
│   │           │       └── skydoves/
│   │           │           └── gemini/
│   │           │               └── core/
│   │           │                   └── designsystem/
│   │           │                       ├── chat/
│   │           │                       │   └── GeminiReactionFactory.kt
│   │           │                       ├── component/
│   │           │                       │   ├── Background.kt
│   │           │                       │   ├── GeminiSmallTopBar.kt
│   │           │                       │   └── LoadingIndicator.kt
│   │           │                       ├── composition/
│   │           │                       │   └── LocalOnFinishDispatcher.kt
│   │           │                       └── theme/
│   │           │                           ├── Background.kt
│   │           │                           ├── Color.kt
│   │           │                           └── Theme.kt
│   │           └── res/
│   │               └── values/
│   │                   └── strings.xml
│   ├── model/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── core/
│   │                               └── model/
│   │                                   ├── GeminiChannel.kt
│   │                                   └── GeminiModel.kt
│   ├── navigation/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── core/
│   │                               └── navigation/
│   │                                   ├── GeminiComposeNavigator.kt
│   │                                   ├── GeminiScreens.kt
│   │                                   ├── NavigationCommand.kt
│   │                                   ├── Navigator.kt
│   │                                   └── di/
│   │                                       └── NavigationModule.kt
│   └── network/
│       ├── .gitignore
│       ├── build.gradle.kts
│       └── src/
│           └── main/
│               ├── AndroidManifest.xml
│               └── kotlin/
│                   └── com/
│                       └── skydoves/
│                           └── gemini/
│                               └── core/
│                                   └── network/
│                                       ├── Dispatchers.kt
│                                       ├── di/
│                                       │   ├── DispatchersModule.kt
│                                       │   └── NetworkModule.kt
│                                       └── service/
│                                           └── ChannelService.kt
├── feature/
│   ├── channels/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── feature/
│   │                               └── channels/
│   │                                   ├── ChannelViewModel.kt
│   │                                   ├── GeminiChannels.kt
│   │                                   └── RememberFloatingBalloon.kt
│   └── chat/
│       ├── .gitignore
│       ├── build.gradle.kts
│       └── src/
│           └── main/
│               ├── AndroidManifest.xml
│               └── kotlin/
│                   └── com/
│                       └── skydoves/
│                           └── gemini/
│                               └── feature/
│                                   └── chat/
│                                       ├── ChatViewModel.kt
│                                       ├── GeminiChat.kt
│                                       └── extension/
│                                           └── GeminiExtension.kt
├── gradle/
│   ├── libs.versions.toml
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── secrets.defaults.properties
├── settings.gradle.kts
└── spotless/
    ├── copyright.kt
    ├── copyright.kts
    ├── copyright.xml
    └── spotless.gradle

================================================
FILE CONTENTS
================================================

================================================
FILE: .editorconfig
================================================
root = true
[*]
# Most of the standard properties are supported
indent_size=2
max_line_length=100

================================================
FILE: .github/CODEOWNERS
================================================
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.

# More details are here: https://help.github.com/articles/about-codeowners/

# The '*' pattern is global owners.
# Not adding in this PR, but I'd like to try adding a global owner set with the entire team.
# One interpretation of their docs is that global owners are added only if not removed
# by a more local rule.

# Order is important. The last matching pattern has the most precedence.
# The folders are ordered as follows:

# In each subsection folders are ordered first by depth, then alphabetically.
# This should make it easy to add new rules without breaking existing ones.
*       @skydoves

================================================
FILE: .github/FUNDING.yml
================================================
github: skydoves
custom: ["https://www.paypal.me/skydoves", "https://www.buymeacoffee.com/skydoves"]


================================================
FILE: .github/dependabot.yml
================================================
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
  - package-ecosystem: "gradle" # See documentation for possible values
    directory: "/" # Location of package manifests
    schedule:
      interval: "daily"
    # Allow up to 10 open pull requests for pip dependencies
    open-pull-requests-limit: 10


================================================
FILE: .github/pull_request_template.md
================================================
### 🎯 Goal
Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue.

### 🛠 Implementation details
Describe the implementation details for this Pull Request.

### ✍️ Explain examples
Explain examples with code for this updates.

### Preparing a pull request for review
Ensure your change is properly formatted by running:

```gradle
$ ./gradlew spotlessApply
```

Please correct any failures before requesting a review.

================================================
FILE: .github/workflows/android.yml
================================================
name: Android CI

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  lint:
    name: Spotless check
    runs-on: ubuntu-latest
    steps:
      - name: Check out code
        uses: actions/checkout@v3.1.0
      - name: Set up JDK
        uses: actions/setup-java@v3.5.1
        with:
          distribution: adopt
          java-version: 17
      - name: spotless
        run: ./gradlew spotlessCheck

  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: set up JDK
        uses: actions/setup-java@v3
        with:
          distribution: zulu
          java-version: 17

      - uses: gradle/gradle-build-action@v2.7.1
      - name: Make Gradle executable
        run: chmod +x ./gradlew

      - name: Build with Gradle
        run: |
          ./gradlew --scan --stacktrace \
              :app:assembleDebug


================================================
FILE: .github/workflows/baseline-profile.yml
================================================
# Workflow name
name: baseline-profiles

# Workflow title
run-name: ${{ github.actor }} requested a workflow

# This should be a manual trigger so this actions gets executed every time make a new pull request.
# Change this event to what suits your project best.
# Read more at https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
on:
  workflow_dispatch:

# Environment variables (Optional)
# Small projects might have signingConfigs locally. This could lead to failures on GitHub Actions.
# If that's the case, upload your properties defined locally to GitHub Secrets.

# On your signingConfigs, you can recover GitHub Secrets using: variable = System.getenv("VARIABLE")

# Then uncomment this block properly defining your uploaded variables
# env:
#  VARIABLE: ${{ secrets.VARIABLE }}

# Read more at https://docs.github.com/en/actions/security-guides/encrypted-secrets

# Jobs to executed on GitHub machines
jobs:

  # Job name
  generate-baseline-profiles:

    # Operating system where the job gets to be executed
    runs-on: macos-latest

    # Job steps
    steps:

      # Checks your code out on the machine
      - uses: actions/checkout@v3

      # Sets java up
      - uses: actions/setup-java@v3
        with:
          distribution: temurin
          java-version: 17

      # Sets gradle up
      - name: Setup Gradle
        uses: gradle/gradle-build-action@v2

      # Grants execute permission to gradle (safety step)
      - name: Grant Permissions to gradlew
        run: chmod +x gradlew

      # This allows us to build most of what we need without the emulator running
      # and using resources
      - name: Build app and benchmark
        run: ./gradlew :app:assembleBenchmark

      # Cleans managed device if previously settle and space currently is not available
      - name: Clean Managed Devices
        run: ./gradlew cleanManagedDevices --unused-only

      # Generates Baseline Profile
      - name: Generate Baseline Profile
        run: ./gradlew generateBaselineProfile -Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect" -Pandroid.testInstrumentationRunnerArguments.androidx.benchmark.enabledRules=BaselineProfile -Pandroid.experimental.testOptions.managedDevices.setupTimeoutMinutes=20 -Dorg.gradle.workers.max=4

      # Create Pull Request
      - name: Create Pull Request
        uses: peter-evans/create-pull-request@v5
        with:
          commit-message: "Generate baseline profiles"
          title: "Generate baseline profiles"
          delete-branch: true
          reviewers: skydoves
          branch: actions/baseline-profiles

================================================
FILE: .gitignore
================================================
# Built application files
*.apk
*.ap_

# Files for the ART/Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/
out/

# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties
secrets.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# Intellij
*.iml
/.idea/*
!.idea/codeInsightSettings.xml
app/.idea/

# Mac
*.DS_Store

# Keystore files
*.jks

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild

# Google Services (e.g. APIs or Firebase)
google-services.json

# Temporary API docs
docs/api


================================================
FILE: CODE_OF_CONDUCT.md
================================================
# Contributor Covenant Code of Conduct

## Our Pledge

We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
nationality, personal appearance, race, religion, or sexual identity
and orientation.

We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.

## Our Standards

Examples of behavior that contributes to a positive environment for our
community include:

* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
  and learning from the experience
* Focusing on what is best not just for us as individuals, but for the
  overall community

Examples of unacceptable behavior include:

* The use of sexualized language or imagery, and sexual attention or
  advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email
  address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
  professional setting

## Enforcement Responsibilities

Community leaders are responsible for clarifying and enforcing our standards of
acceptable behavior and will take appropriate and fair corrective action in
response to any behavior that they deem inappropriate, threatening, offensive,
or harmful.

Community leaders have the right and responsibility to remove, edit, or reject
comments, commits, code, wiki edits, issues, and other contributions that are
not aligned to this Code of Conduct, and will communicate reasons for moderation
decisions when appropriate.

## Scope

This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.
Examples of representing our community include using an official e-mail address,
posting via an official social media account, or acting as an appointed
representative at an online or offline event.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
skydoves2@gmail.com.
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
reporter of any incident.

## Enforcement Guidelines

Community leaders will follow these Community Impact Guidelines in determining
the consequences for any action they deem in violation of this Code of Conduct:

### 1. Correction

**Community Impact**: Use of inappropriate language or other behavior deemed
unprofessional or unwelcome in the community.

**Consequence**: A private, written warning from community leaders, providing
clarity around the nature of the violation and an explanation of why the
behavior was inappropriate. A public apology may be requested.

### 2. Warning

**Community Impact**: A violation through a single incident or series
of actions.

**Consequence**: A warning with consequences for continued behavior. No
interaction with the people involved, including unsolicited interaction with
those enforcing the Code of Conduct, for a specified period of time. This
includes avoiding interactions in community spaces as well as external channels
like social media. Violating these terms may lead to a temporary or
permanent ban.

### 3. Temporary Ban

**Community Impact**: A serious violation of community standards, including
sustained inappropriate behavior.

**Consequence**: A temporary ban from any sort of interaction or public
communication with the community for a specified period of time. No public or
private interaction with the people involved, including unsolicited interaction
with those enforcing the Code of Conduct, is allowed during this period.
Violating these terms may lead to a permanent ban.

### 4. Permanent Ban

**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior,  harassment of an
individual, or aggression toward or disparagement of classes of individuals.

**Consequence**: A permanent ban from any sort of public interaction within
the community.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 2.0, available at
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.

Community Impact Guidelines were inspired by [Mozilla's code of conduct
enforcement ladder](https://github.com/mozilla/diversity).

[homepage]: https://www.contributor-covenant.org

For answers to common questions about this code of conduct, see the FAQ at
https://www.contributor-covenant.org/faq. Translations are available at
https://www.contributor-covenant.org/translations.


================================================
FILE: CONTRIBUTING.md
================================================
## How to contribute
We'd love to accept your patches and contributions to this project. There are just a few small guidelines you need to follow.

## Preparing a pull request for review
Ensure your change is properly formatted by running:

```gradle
./gradlew spotlessApply
```

Please correct any failures before requesting a review.

## Code reviews
All submissions, including submissions by project members, require review. We use GitHub pull requests for this purpose. Consult [GitHub Help](https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests) for more information on using pull requests.


================================================
FILE: LICENSE
================================================
                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS

   APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "[]"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright [yyyy] [name of copyright owner]

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.


================================================
FILE: README.md
================================================

![Gemini Cover](https://github.com/skydoves/gemini-android/assets/24237865/bf8e6cc9-3729-49f8-8f50-b45d6649668f)

<p align="center">
  <a href="https://opensource.org/licenses/Apache-2.0"><img alt="License" src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"/></a>
  <a href="https://android-arsenal.com/api?level=21"><img alt="API" src="https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat"/></a>
  <a href="https://github.com/skydoves/gemini-android/actions/workflows/android.yml"><img alt="Build Status" src="https://github.com/skydoves/gemini-android/actions/workflows/android.yml/badge.svg"/></a>
  <a href="https://github.com/skydoves"><img alt="Profile" src="https://skydoves.github.io/badges/skydoves.svg"/></a>
</p>

**Gemini Android** demonstrates [Google's Generative AI](https://android-developers.googleblog.com/2023/12/leverage-generative-ai-in-your-android-apps.html) on Android with [Stream Chat SDK for Compose](https://getstream.io/tutorials/android-chat?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss).

The purpose of this repository is to demonstrate below:

- Demonstrates [Gemini API](https://ai.google.dev/tutorials/android_quickstart) for Android.
- Implementing entire UI elements with Jetpack Compose.
- Implementation of Android architecture components with Jetpack libraries such as Hilt and AppStartup.
- Performing background tasks with Kotlin Coroutines.
- Integrating chat systems with [Stream Chat Compose SDK](https://getstream.io/tutorials/android-chat?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss) for real-time event handling.

## 📷 Previews

<p align="center">
<img src="previews/preview0.png" alt="drawing" width="270px" />
<img src="previews/preview1.png" alt="drawing" width="270px" />
<img src="previews/preview2.gif" alt="drawing" width="269px" /></br>
</p>

## ✍️ Technical Content

If you're interested in the overall architecture, each layer, Generative AI, Gemini SDK, and implementation details of this project, check out the following blog post: **[Build an AI Chat Android App With Google’s Generative AI](https://getstream.io/blog/android-generative-ai/)**

<a href="https://getstream.io/chat/sdk/compose?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOs">
<img src="https://user-images.githubusercontent.com/24237865/138428440-b92e5fb7-89f8-41aa-96b1-71a5486c5849.png" align="right" width="12%"/>
</a>

## 🛥 Stream Chat & Video SDK

**Gemini Android** is built with __[Stream Chat SDK for Compose](https://getstream.io/chat/sdk/compose?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss)__ to implement messaging systems. If you’re interested in building powerful real-time video/audio calling, audio room, and livestreaming, check out the __[Stream Video SDK for Compose](https://getstream.io/video/docs/android/tutorials/video-calling?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss)__!

### Stream Chat

- [Stream Chat SDK for Android on GitHub](https://github.com/getStream/stream-chat-android)
- [Android Samples for Stream Chat SDK on GitHub](https://github.com/getStream/android-samples)
- [Stream Chat Compose UI Components Guidelines](https://getstream.io/chat/docs/sdk/android/compose/overview/)

### Stream Video

- [Stream Video SDK for Android on GitHub](https://github.com/getstream/stream-video-android?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss)
- [Video Call Tutorial](https://getstream.io/video/docs/android/tutorials/video-calling?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss)
- [Audio Room Tutorial](https://getstream.io/video/docs/android/tutorials/audio-room?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss)
- [Livestream Tutorial](https://getstream.io/video/docs/android/tutorials/livestream?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss)

## 💻 How to build the project?

To build this project properly, you should follow the instructions below: 

1. Go to the __[Stream login page](https://getstream.io/try-for-free?utm_source=Github?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss)__.
2. If you have your GitHub account, click the **SIGN UP WITH GITHUB** button and you can sign up within a couple of seconds. 

![stream](figures/stream0.png)

3. If you don't have a GitHub account, fill in the inputs and click the **START FREE TRIAL** button.
4. Go to the __[Dashboard](https://dashboard.getstream.io?utm_source=Github?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss)__ and click the **Create App** button like the below.

![stream](figures/stream1.png)

5. Fill in the blanks like the below and click the **Create App** button.

<img width="44%" src = "figures/stream2.png">

6. You will see the **Key** like the image below and then copy it.

![stream](figures/stream3.png)

7. Create a new file named **secrets.properties** on the root directory of this Android project, and add the key to the `secrets.properties` file like the below:

![stream](figures/stream5.png)

```gradle
STREAM_API_KEY=..
```

8. Go to your __[Dashboard](https://dashboard.getstream.io?utm_source=Github?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss)__ again and click your App.

9. In the **Overview** menu, you can find the **Authentication** category by scrolling to the middle of the page.

10. Switch on the **Disable Auth Checks** option and click the **Submit** button like the image below.

![stream](figures/stream4.png)

11. Click the **Explorer** tab on the left side menu.

12. Click **users** -> **Create New User** button sequentially and add fill in the user like the below:

<img width="48%" src = "figures/stream6.png">

- User Name: `gemini`
- User ID: `gemini`

13. Go to **[Google AI Studio](https://makersuite.google.com/app/apikey)**, login with your Google account and select the **Get API key** on the menu left like the image below:

![gemini](figures/gemini0.png)

14. Create your API key for using generative AI SDKs, and you'll get one like the image below:

![gemini](figures/gemini1.png)

15. Add the key to the `secrets.properties` file like the below:

![gemini](figures/gemini2.png)

```gradle
GEMINI_API_KEY=..
```

16. Build and run the project.


## 🛠 Tech Stack & Open Source Libraries
- Minimum SDK level 21.
- 100% [Jetpack Compose](https://developer.android.com/jetpack/compose) based + [Coroutines](https://github.com/Kotlin/kotlinx.coroutines) + [Flow](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/) for asynchronous.
- [Compose Chat SDK for Messaging](https://getstream.io/chat/sdk/compose?utm_source=Github?utm_source=Github&utm_medium=Jaewoong_OSS&utm_content=Developer&utm_campaign=Github_Dec2024_Jaewoong_Gemini&utm_term=DevRelOss): The Jetpack Compose Chat Messaging SDK is built on a low-level chat client and provides modular, customizable Compose UI components that you can easily drop into your app.
- Jetpack
  - Compose: Android’s modern toolkit for building native UI.
  - ViewModel: UI related data holder and lifecycle aware.
  - App Startup: Provides a straightforward, performant way to initialize components at application startup.
  - Navigation: For navigating screens and [Hilt Navigation Compose](https://developer.android.com/jetpack/compose/libraries#hilt) for injecting dependencies.
  - Room: Constructs Database by providing an abstraction layer over SQLite to allow fluent database access.
  - Datastore: Store data asynchronously, consistently, and transactionally, overcoming some of the drawbacks of SharedPreferences.
  - [Hilt](https://dagger.dev/hilt/): Dependency Injection.
- [Landscapist Glide](https://github.com/skydoves/landscapist#glide), [animation](https://github.com/skydoves/landscapist#animation), [placeholder](https://github.com/skydoves/landscapist#placeholder): Jetpack Compose image loading library that fetches and displays network images with Glide, Coil, and Fresco.
- [Retrofit2 & OkHttp3](https://github.com/square/retrofit): Construct the REST APIs and paging network data.
- [Sandwich](https://github.com/skydoves/Sandwich): Construct a lightweight and modern response interface to handle network payload for Android.
- [Moshi](https://github.com/square/moshi/): A modern JSON library for Kotlin and Java.
- [ksp](https://github.com/google/ksp): Kotlin Symbol Processing API.
- [Balloon](https://github.com/skydoves/balloon): Modernized and sophisticated tooltips, fully customizable with an arrow and animations for Android.
- [StreamLog](https://github.com/GetStream/stream-log): A lightweight and extensible logger library for Kotlin and Android.
- Baseline Profiles: To improve app performance by including a list of classes and methods specifications in your APK that can be used by Android Runtime.

## 🏛️ Architecture

**Gemini Android** follows the [Google's official architecture guidance](https://developer.android.com/topic/architecture).

![architecture](figures/figure0.png)

**Gemini Android** was built with [Guide to app architecture](https://developer.android.com/topic/architecture), so it would be a great sample to show how the architecture works in real-world projects.<br>

The overall architecture is composed of two layers; UI Layer and the data layer. Each layer has dedicated components and they each have different responsibilities.
The arrow means the component has a dependency on the target component following its direction.

### Architecture Overview

![layer](figures/figure1.png)

Each layer has different responsibilities below. Basically, they follow [unidirectional event/data flow](https://developer.android.com/topic/architecture/ui-layer#udf).

### UI Layer

![layer](figures/figure2.png)

The UI Layer consists of UI elements like buttons, menus, tabs that could interact with users and [ViewModel](https://developer.android.com/topic/libraries/architecture/viewmodel) that holds app states and restores data when configuration changes.

### Data Layer

![layer](figures/figure3.png)

The data Layer consists of repositories, which include business logic, such as querying data from the local database and requesting remote data from the network. It is implemented as an offline-first source of business logic and follows the [single source of truth](https://en.wikipedia.org/wiki/Single_source_of_truth) principle.<br>

For more information about the overall architecture, check out **[Build a Real-Time WhatsApp Clone With Jetpack Compose](https://getstream.io/blog/build-whatsapp-clone/)**.

## Modularization

![02](https://github.com/skydoves/gemini-android/assets/24237865/7b0cc635-83b0-434c-b151-d0e0e0a2ff9b)

**Gemini Android** has implemented the following modularization strategies:

- **Reusability**: By effectively modularizing reusable code, it not only facilitates code sharing but also restricts code access across different modules.

- **Parallel Building**: Modules are capable of being built in parallel, leading to reduced overall build time.

- **Decentralized Focusing**: Individual development teams are allocated specific modules, allowing them to concentrate on their designated areas.


## 💯 MAD Score

![summary](https://user-images.githubusercontent.com/24237865/158918011-bc766482-ec83-47dd-9237-d8a226cab263.png)

## 🤝 Contribution

Most of the features are not completed except the chat feature, so anyone can contribute and improve this project following the [Contributing Guideline](https://github.com/skydoves/gemini-android/blob/main/CONTRIBUTING.md).

## Find this repository useful? 💙
Support it by joining __[stargazers](https://github.com/skydoves/gemini-android/stargazers)__ for this repository. :star: <br>
Also, __[follow me](https://github.com/skydoves)__ on GitHub for my next creations! 🤩

# License
```xml
Designed and developed by 2024 skydoves (Jaewoong Eum)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```


================================================
FILE: app/.gitignore
================================================
/build

================================================
FILE: app/build.gradle.kts
================================================
/*
 * Designed and developed by 2024 skydoves (Jaewoong Eum)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
import java.io.File
import java.io.FileInputStream
import java.util.*

plugins {
  id("skydoves.android.application")
  id("skydoves.android.application.compose")
  id("skydoves.android.hilt")
  id("skydoves.spotless")
  id("kotlin-parcelize")
  id("dagger.hilt.android.plugin")
  id(libs.plugins.google.secrets.get().pluginId)
  id(libs.plugins.baseline.profile.get().pluginId)
}

val keystoreProperties = Properties()
val keystorePropertiesFile = File(rootProject.rootDir, "keystore.properties")
if (keystorePropertiesFile.exists()) {
  keystoreProperties.load(FileInputStream(keystorePropertiesFile))
}

android {
  namespace = "com.skydoves.gemini"
  compileSdk = Configurations.compileSdk

  defaultConfig {
    applicationId = "com.skydoves.gemini"
    minSdk = Configurations.minSdk
    targetSdk = Configurations.targetSdk
    versionCode = Configurations.versionCode
    versionName = Configurations.versionName
  }

  packaging {
    resources {
      excludes.add("/META-INF/{AL2.0,LGPL2.1}")
    }
  }

  signingConfigs {
    create("release") {
      keyAlias = keystoreProperties["releaseKeyAlias"] as String?
      keyPassword = keystoreProperties["releaseKeyPassword"] as String?
      storeFile = file(keystoreProperties["releaseStoreFile"] ?: "release/release-key.jks")
      storePassword = keystoreProperties["releaseStorePassword"] as String?
    }
  }

  buildTypes {
    release {
      if (keystorePropertiesFile.exists()) {
        signingConfig = signingConfigs["release"]
      }
      isShrinkResources = true
      isMinifyEnabled = true
    }

    create("benchmark") {
      initWith(buildTypes.getByName("release"))
      signingConfig = signingConfigs.getByName("debug")
      matchingFallbacks += listOf("release")
      isDebuggable = false
      proguardFiles("benchmark-rules.pro")
    }
  }
}

secrets {
  propertiesFileName = "secrets.properties"
  defaultPropertiesFileName = "secrets.defaults.properties"
}

dependencies {
  // core modules
  implementation(project(":core:designsystem"))
  implementation(project(":core:navigation"))
  implementation(project(":core:data"))

  // feature modules
  implementation(project(":feature:channels"))
  implementation(project(":feature:chat"))

  // compose
  implementation(libs.androidx.activity.compose)
  implementation(libs.androidx.compose.runtime)
  implementation(libs.androidx.compose.ui.tooling)
  implementation(libs.androidx.compose.ui.tooling.preview)
  implementation(libs.androidx.compose.constraintlayout)

  // jetpack
  implementation(libs.androidx.startup)
  implementation(libs.hilt.android)
  implementation(libs.androidx.hilt.navigation.compose)
  ksp(libs.hilt.compiler)

  // logger
  implementation(libs.stream.log)

  // crash tracer & restorer
  implementation(libs.snitcher)

  // firebase
  implementation(platform(libs.firebase.bom))
  implementation(libs.firebase.analytics)
  implementation(libs.firebase.messaging)
  implementation(libs.firebase.crashlytics)

  // baseline profile
  baselineProfile(project(":baseline-profile"))
}

if (file("google-services.json").exists()) {
  apply(plugin = libs.plugins.gms.googleServices.get().pluginId)
  apply(plugin = libs.plugins.firebase.crashlytics.get().pluginId)
}

================================================
FILE: app/proguard-rules.pro
================================================
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

================================================
FILE: app/src/main/AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools">

  <application
    android:name=".GeminiApp"
    android:allowBackup="true"
    android:dataExtractionRules="@xml/data_extraction_rules"
    android:fullBackupContent="@xml/backup_rules"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.Geminiandroid"
    tools:targetApi="31">
    <profileable
      android:shell="true"
      tools:targetApi="29" />

    <activity
      android:name=".MainActivity"
      android:exported="true"
      android:windowSoftInputMode="adjustResize">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>

    <provider
      android:name="androidx.startup.InitializationProvider"
      android:authorities="com.skydoves.gemini.androidx-startup"
      android:exported="false"
      tools:node="merge">
      <meta-data
        android:name="com.skydoves.gemini.initializer.StreamChatInitializer"
        android:value="androidx.startup" />
    </provider>
  </application>

</manifest>

================================================
FILE: app/src/main/kotlin/com/skydoves/gemini/GeminiApp.kt
================================================
/*
 * Designed and developed by 2024 skydoves (Jaewoong Eum)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.skydoves.gemini

import android.app.Application
import com.skydoves.snitcher.Snitcher
import dagger.hilt.android.HiltAndroidApp

@HiltAndroidApp
class GeminiApp : Application() {

  override fun onCreate() {
    super.onCreate()

    // install Snitcher to trace global exceptions and restore the app.
    // https://github.com/skydoves/snitcher
    Snitcher.install(this)
  }
}


================================================
FILE: app/src/main/kotlin/com/skydoves/gemini/MainActivity.kt
================================================
/*
 * Designed and developed by 2024 skydoves (Jaewoong Eum)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.skydoves.gemini

import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.runtime.CompositionLocalProvider
import com.skydoves.gemini.core.designsystem.composition.LocalOnFinishDispatcher
import com.skydoves.gemini.core.navigation.AppComposeNavigator
import com.skydoves.gemini.ui.GeminiMain
import dagger.hilt.android.AndroidEntryPoint
import javax.inject.Inject

@AndroidEntryPoint
class MainActivity : ComponentActivity() {

  @Inject
  internal lateinit var appComposeNavigator: AppComposeNavigator

  override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)

    setContent {
      CompositionLocalProvider(
        LocalOnFinishDispatcher provides { finish() }
      ) {
        GeminiMain(composeNavigator = appComposeNavigator)
      }
    }
  }
}


================================================
FILE: app/src/main/kotlin/com/skydoves/gemini/di/ChatEntryPoint.kt
================================================
/*
 * Designed and developed by 2024 skydoves (Jaewoong Eum)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.skydoves.gemini.di

import android.content.Context
import com.skydoves.gemini.initializer.StreamChatInitializer
import dagger.hilt.EntryPoint
import dagger.hilt.InstallIn
import dagger.hilt.android.EntryPointAccessors
import dagger.hilt.components.SingletonComponent

@EntryPoint
@InstallIn(SingletonComponent::class)
internal interface ChatEntryPoint {

  fun inject(streamChatInitializer: StreamChatInitializer)

  companion object {
    fun resolve(context: Context): ChatEntryPoint {
      val appContext = context.applicationContext ?: throw IllegalStateException(
        "applicationContext was not found in ChatEntryPoint"
      )
      return EntryPointAccessors.fromApplication(
        appContext,
        ChatEntryPoint::class.java
      )
    }
  }
}


================================================
FILE: app/src/main/kotlin/com/skydoves/gemini/di/ChatModule.kt
================================================
/*
 * Designed and developed by 2024 skydoves (Jaewoong Eum)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.skydoves.gemini.di

import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
import dagger.hilt.components.SingletonComponent
import io.getstream.chat.android.client.ChatClient
import javax.inject.Singleton

@Module
@InstallIn(SingletonComponent::class)
internal object ChatModule {

  @Provides
  @Singleton
  fun provideStreamChatClient() = ChatClient.instance()
}


================================================
FILE: app/src/main/kotlin/com/skydoves/gemini/initializer/StreamChatInitializer.kt
================================================
/*
 * Designed and developed by 2024 skydoves (Jaewoong Eum)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.skydoves.gemini.initializer

import android.content.Context
import androidx.startup.Initializer
import com.skydoves.gemini.BuildConfig
import com.skydoves.gemini.core.datastore.PreferenceDataStore
import com.skydoves.gemini.di.ChatEntryPoint
import io.getstream.chat.android.client.ChatClient
import io.getstream.chat.android.client.logger.ChatLogLevel
import io.getstream.chat.android.models.ConnectionData
import io.getstream.chat.android.models.User
import io.getstream.chat.android.offline.plugin.factory.StreamOfflinePluginFactory
import io.getstream.chat.android.state.plugin.config.StatePluginConfig
import io.getstream.chat.android.state.plugin.factory.StreamStatePluginFactory
import io.getstream.log.streamLog
import io.getstream.result.call.Call
import javax.inject.Inject
import kotlin.random.Random

/**
 * StreamChatInitializer initializes all Stream Client components.
 */
class StreamChatInitializer : Initializer<Unit> {

  @Inject
  internal lateinit var preferenceDataStore: PreferenceDataStore

  override fun create(context: Context) {
    ChatEntryPoint.resolve(context).inject(this)

    streamLog { "StreamChatInitializer is initialized" }

    /**
     * initialize a global instance of the [ChatClient].
     * The ChatClient is the main entry point for all low-level operations on chat.
     * e.g, connect/disconnect user to the server, send/update/pin message, etc.
     */
    val logLevel = if (BuildConfig.DEBUG) ChatLogLevel.ALL else ChatLogLevel.NOTHING
    val offlinePluginFactory = StreamOfflinePluginFactory(
      appContext = context
    )
    val statePluginFactory = StreamStatePluginFactory(
      config = StatePluginConfig(
        backgroundSyncEnabled = true,
        userPresence = true
      ),
      appContext = context
    )
    val chatClient = ChatClient.Builder(BuildConfig.STREAM_API_KEY, context)
      .withPlugins(offlinePluginFactory, statePluginFactory)
      .logLevel(logLevel)
      .build()

    val number = preferenceDataStore.userNumber.value ?: let {
      val random = Random.nextInt(10000)
      preferenceDataStore.updateUserNumber(random)
      random
    }
    val user = User(
      id = "stream$number",
      name = "User$number",
      image = "https://picsum.photos/id/${Random.nextInt(1000)}/300/300"
    )

    val token = chatClient.devToken(user.id)
    chatClient.connectUser(user, token).enqueue(object : Call.Callback<ConnectionData> {
      override fun onResult(result: io.getstream.result.Result<ConnectionData>) {
        if (result.isFailure) {
          streamLog {
            "Can't connect user. Please check the app README.md and ensure " +
              "**Disable Auth Checks** is ON in the Dashboard"
          }
        }
      }
    })
  }

  override fun dependencies(): List<Class<out Initializer<*>>> =
    listOf(StreamLogInitializer::class.java)
}


================================================
FILE: app/src/main/kotlin/com/skydoves/gemini/initializer/StreamLogInitializer.kt
================================================
/*
 * Designed and developed by 2024 skydoves (Jaewoong Eum)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.skydoves.gemini.initializer

import android.content.Context
import androidx.startup.Initializer
import io.getstream.log.Priority
import io.getstream.log.android.AndroidStreamLogger
import io.getstream.log.android.BuildConfig
import io.getstream.log.streamLog

class StreamLogInitializer : Initializer<Unit> {

  override fun create(context: Context) {
    if (BuildConfig.DEBUG) {
      AndroidStreamLogger.install(minPriority = Priority.DEBUG)
      streamLog { "StreamLogInitializer is initialized" }
    }
  }

  override fun dependencies(): List<Class<out Initializer<*>>> = emptyList()
}


================================================
FILE: app/src/main/kotlin/com/skydoves/gemini/navigation/GeminiNavHost.kt
================================================
/*
 * Designed and developed by 2024 skydoves (Jaewoong Eum)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.skydoves.gemini.navigation

import androidx.compose.runtime.Composable
import androidx.navigation.NavHostController
import androidx.navigation.compose.NavHost
import com.skydoves.gemini.core.navigation.AppComposeNavigator
import com.skydoves.gemini.core.navigation.GeminiScreens

@Composable
fun GeminiNavHost(
  navHostController: NavHostController,
  composeNavigator: AppComposeNavigator
) {
  NavHost(
    navController = navHostController,
    startDestination = GeminiScreens.Channels.route
  ) {
    geminiHomeNavigation(
      composeNavigator = composeNavigator
    )
  }
}


================================================
FILE: app/src/main/kotlin/com/skydoves/gemini/navigation/GeminiNavigation.kt
================================================
/*
 * Designed and developed by 2024 skydoves (Jaewoong Eum)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.skydoves.gemini.navigation

import androidx.compose.foundation.layout.padding
import androidx.compose.material3.Scaffold
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.stringResource
import androidx.navigation.NavGraphBuilder
import androidx.navigation.compose.composable
import com.skydoves.gemini.R
import com.skydoves.gemini.core.designsystem.component.GeminiSmallTopBar
import com.skydoves.gemini.core.navigation.AppComposeNavigator
import com.skydoves.gemini.core.navigation.GeminiScreens
import com.skydoves.gemini.core.navigation.GeminiScreens.Companion.argument_channel_id
import com.skydoves.gemini.feature.channels.GeminiChannels
import com.skydoves.gemini.feature.chat.GeminiChat

fun NavGraphBuilder.geminiHomeNavigation(
  composeNavigator: AppComposeNavigator
) {
  composable(route = GeminiScreens.Channels.name) {
    Scaffold(topBar = {
      GeminiSmallTopBar(
        title = stringResource(id = R.string.app_name)
      )
    }) { padding ->
      GeminiChannels(
        modifier = Modifier.padding(padding),
        composeNavigator = composeNavigator
      )
    }
  }

  composable(
    route = GeminiScreens.Messages.name,
    arguments = GeminiScreens.Messages.navArguments
  ) {
    val channelId = it.arguments?.getString(argument_channel_id) ?: return@composable
    GeminiChat(
      channelId = channelId,
      composeNavigator = composeNavigator
    )
  }
}


================================================
FILE: app/src/main/kotlin/com/skydoves/gemini/ui/GeminiMain.kt
================================================
/*
 * Designed and developed by 2024 skydoves (Jaewoong Eum)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.skydoves.gemini.ui

import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.navigation.compose.rememberNavController
import com.skydoves.gemini.core.designsystem.component.GeminiBackground
import com.skydoves.gemini.core.designsystem.theme.GeminiComposeTheme
import com.skydoves.gemini.core.navigation.AppComposeNavigator
import com.skydoves.gemini.navigation.GeminiNavHost

@Composable
fun GeminiMain(
  composeNavigator: AppComposeNavigator
) {
  GeminiComposeTheme {
    val navHostController = rememberNavController()

    LaunchedEffect(Unit) {
      composeNavigator.handleNavigationCommands(navHostController)
    }

    GeminiBackground {
      GeminiNavHost(navHostController = navHostController, composeNavigator = composeNavigator)
    }
  }
}


================================================
FILE: app/src/main/res/drawable/ic_launcher_background.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="108dp"
    android:height="108dp"
    android:viewportWidth="108"
    android:viewportHeight="108">
    <path
        android:fillColor="#3DDC84"
        android:pathData="M0,0h108v108h-108z" />
    <path
        android:fillColor="#00000000"
        android:pathData="M9,0L9,108"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M19,0L19,108"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M29,0L29,108"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M39,0L39,108"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M49,0L49,108"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M59,0L59,108"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M69,0L69,108"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M79,0L79,108"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M89,0L89,108"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M99,0L99,108"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M0,9L108,9"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M0,19L108,19"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M0,29L108,29"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M0,39L108,39"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M0,49L108,49"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M0,59L108,59"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M0,69L108,69"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M0,79L108,79"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M0,89L108,89"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M0,99L108,99"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M19,29L89,29"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M19,39L89,39"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M19,49L89,49"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M19,59L89,59"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M19,69L89,69"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M19,79L89,79"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M29,19L29,89"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M39,19L39,89"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M49,19L49,89"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M59,19L59,89"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M69,19L69,89"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
    <path
        android:fillColor="#00000000"
        android:pathData="M79,19L79,89"
        android:strokeWidth="0.8"
        android:strokeColor="#33FFFFFF" />
</vector>


================================================
FILE: app/src/main/res/drawable/ic_launcher_foreground.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:aapt="http://schemas.android.com/aapt"
    android:width="108dp"
    android:height="108dp"
    android:viewportWidth="108"
    android:viewportHeight="108">
    <path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
        <aapt:attr name="android:fillColor">
            <gradient
                android:endX="85.84757"
                android:endY="92.4963"
                android:startX="42.9492"
                android:startY="49.59793"
                android:type="linear">
                <item
                    android:color="#44000000"
                    android:offset="0.0" />
                <item
                    android:color="#00000000"
                    android:offset="1.0" />
            </gradient>
        </aapt:attr>
    </path>
    <path
        android:fillColor="#FFFFFF"
        android:fillType="nonZero"
        android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
        android:strokeWidth="1"
        android:strokeColor="#00000000" />
</vector>

================================================
FILE: app/src/main/res/layout/activity_main.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

================================================
FILE: app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@drawable/ic_launcher_background" />
    <foreground android:drawable="@drawable/ic_launcher_foreground" />
    <monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

================================================
FILE: app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@drawable/ic_launcher_background" />
    <foreground android:drawable="@drawable/ic_launcher_foreground" />
    <monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

================================================
FILE: app/src/main/res/values/colors.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<resources>
    <color name="black">#FF000000</color>
    <color name="white">#FFFFFFFF</color>
</resources>

================================================
FILE: app/src/main/res/values/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<resources>
    <string name="app_name">gemini-android</string>
</resources>

================================================
FILE: app/src/main/res/values/themes.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<resources xmlns:tools="http://schemas.android.com/tools">
  <!-- Base application theme. -->
  <style name="Base.Theme.Geminiandroid" parent="Theme.AppCompat.DayNight.NoActionBar">
    <!-- Customize your light theme here. -->
    <!-- <item name="colorPrimary">@color/my_light_primary</item> -->
  </style>

  <style name="Theme.Geminiandroid" parent="Base.Theme.Geminiandroid" />
</resources>

================================================
FILE: app/src/main/res/values-night/themes.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<resources xmlns:tools="http://schemas.android.com/tools">
  <!-- Base application theme. -->
  <style name="Base.Theme.Geminiandroid" parent="Theme.AppCompat.DayNight.NoActionBar">
    <!-- Customize your dark theme here. -->
    <!-- <item name="colorPrimary">@color/my_dark_primary</item> -->
  </style>
</resources>

================================================
FILE: app/src/main/res/xml/backup_rules.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<full-backup-content>
    <!--
   <include domain="sharedpref" path="."/>
   <exclude domain="sharedpref" path="device.xml"/>
-->
</full-backup-content>

================================================
FILE: app/src/main/res/xml/data_extraction_rules.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!--
     Designed and developed by 2024 skydoves (Jaewoong Eum)

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<data-extraction-rules>
    <cloud-backup>
        <!-- TODO: Use <include> and <exclude> to control what is backed up.
        <include .../>
        <exclude .../>
        -->
    </cloud-backup>
    <!--
    <device-transfer>
        <include .../>
        <exclude .../>
    </device-transfer>
    -->
</data-extraction-rules>

================================================
FILE: app/src/release/generated/baselineProfiles/baseline-prof.txt
================================================
Landroidx/activity/Cancellable;
Landroidx/activity/ComponentActivity;
HPLandroidx/activity/ComponentActivity;-><init>()V
HSPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
HSPLandroidx/activity/ComponentActivity;->createFullyDrawnExecutor()Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor;
HSPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V
HPLandroidx/activity/ComponentActivity;->getDefaultViewModelCreationExtras()Landroidx/lifecycle/viewmodel/CreationExtras;
HPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle;
HSPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
HSPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
HSPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
HSPLandroidx/activity/ComponentActivity;->initializeViewTreeOwners()V
PLandroidx/activity/ComponentActivity;->lambda$new$1$androidx-activity-ComponentActivity()Landroid/os/Bundle;
HSPLandroidx/activity/ComponentActivity;->lambda$new$2$androidx-activity-ComponentActivity(Landroid/content/Context;)V
HSPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V
PLandroidx/activity/ComponentActivity;->onSaveInstanceState(Landroid/os/Bundle;)V
PLandroidx/activity/ComponentActivity;->onTrimMemory(I)V
HSPLandroidx/activity/ComponentActivity;->setContentView(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;-><init>(Landroidx/activity/ComponentActivity;)V
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;-><init>(Landroidx/activity/ComponentActivity;)V
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;-><init>(Landroidx/activity/ComponentActivity;)V
PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;->saveState()Landroid/os/Bundle;
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda3;->onContextAvailable(Landroid/content/Context;)V
Landroidx/activity/ComponentActivity$1;
HSPLandroidx/activity/ComponentActivity$1;-><init>(Landroidx/activity/ComponentActivity;)V
Landroidx/activity/ComponentActivity$2;
HSPLandroidx/activity/ComponentActivity$2;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$2;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/ComponentActivity$3;
HSPLandroidx/activity/ComponentActivity$3;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/ComponentActivity$4;
HSPLandroidx/activity/ComponentActivity$4;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/ComponentActivity$5;
HSPLandroidx/activity/ComponentActivity$5;-><init>(Landroidx/activity/ComponentActivity;)V
Landroidx/activity/ComponentActivity$6;
HSPLandroidx/activity/ComponentActivity$6;-><init>(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity$6;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
PLandroidx/activity/ComponentActivity$Api19Impl;->cancelPendingInputEvents(Landroid/view/View;)V
Landroidx/activity/ComponentActivity$NonConfigurationInstances;
Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutor;
Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;
HSPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;-><init>(Landroidx/activity/ComponentActivity;)V
PLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->activityDestroyed()V
HPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->onDraw()V
PLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->run()V
HSPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;->viewCreated(Landroid/view/View;)V
Landroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m()Ljava/lang/Class;
HPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m()Ljava/time/ZoneOffset;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/content/Context;Ljava/lang/Class;)Ljava/lang/Object;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/content/res/Resources;ILandroid/content/res/Resources$Theme;)I
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/os/LocaleList;I)Ljava/util/Locale;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/text/StaticLayout$Builder;Landroid/text/TextDirectionHeuristic;)Landroid/text/StaticLayout$Builder;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/view/View;I)V
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Landroid/view/View;Ljava/util/List;)V
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticApiModelOutline0;->m(Ljava/lang/Object;)Landroid/view/autofill/AutofillManager;
Landroidx/activity/FullyDrawnReporter;
HSPLandroidx/activity/FullyDrawnReporter;-><init>(Ljava/util/concurrent/Executor;Lkotlin/jvm/functions/Function0;)V
Landroidx/activity/FullyDrawnReporter$$ExternalSyntheticLambda0;
HSPLandroidx/activity/FullyDrawnReporter$$ExternalSyntheticLambda0;-><init>(Landroidx/activity/FullyDrawnReporter;)V
Landroidx/activity/FullyDrawnReporterOwner;
Landroidx/activity/OnBackPressedCallback;
HSPLandroidx/activity/OnBackPressedCallback;-><init>(Z)V
HSPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V
PLandroidx/activity/OnBackPressedCallback;->getEnabledChangedCallback$activity_release()Lkotlin/jvm/functions/Function0;
HSPLandroidx/activity/OnBackPressedCallback;->isEnabled()Z
PLandroidx/activity/OnBackPressedCallback;->remove()V
PLandroidx/activity/OnBackPressedCallback;->removeCancellable(Landroidx/activity/Cancellable;)V
HSPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V
HSPLandroidx/activity/OnBackPressedCallback;->setEnabledChangedCallback$activity_release(Lkotlin/jvm/functions/Function0;)V
Landroidx/activity/OnBackPressedDispatcher;
HSPLandroidx/activity/OnBackPressedDispatcher;-><init>(Ljava/lang/Runnable;)V
HSPLandroidx/activity/OnBackPressedDispatcher;-><init>(Ljava/lang/Runnable;Landroidx/core/util/Consumer;)V
PLandroidx/activity/OnBackPressedDispatcher;->access$getInProgressCallback$p(Landroidx/activity/OnBackPressedDispatcher;)Landroidx/activity/OnBackPressedCallback;
PLandroidx/activity/OnBackPressedDispatcher;->access$getOnBackPressedCallbacks$p(Landroidx/activity/OnBackPressedDispatcher;)Lkotlin/collections/ArrayDeque;
HSPLandroidx/activity/OnBackPressedDispatcher;->access$updateEnabledCallbacks(Landroidx/activity/OnBackPressedDispatcher;)V
HPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V
HPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback$activity_release(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable;
HPLandroidx/activity/OnBackPressedDispatcher;->updateEnabledCallbacks()V
Landroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;
HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V
PLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->cancel()V
HPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;
HSPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V
HPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->cancel()V
Landroidx/activity/OnBackPressedDispatcher$addCallback$1;
HSPLandroidx/activity/OnBackPressedDispatcher$addCallback$1;-><init>(Ljava/lang/Object;)V
HSPLandroidx/activity/OnBackPressedDispatcher$addCallback$1;->invoke()Ljava/lang/Object;
HSPLandroidx/activity/OnBackPressedDispatcher$addCallback$1;->invoke()V
Landroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;
HSPLandroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;-><init>(Ljava/lang/Object;)V
PLandroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;->invoke()Ljava/lang/Object;
PLandroidx/activity/OnBackPressedDispatcher$addCancellableCallback$1;->invoke()V
Landroidx/activity/OnBackPressedDispatcherOwner;
Landroidx/activity/R$id;
Landroidx/activity/ViewTreeFullyDrawnReporterOwner;
HSPLandroidx/activity/ViewTreeFullyDrawnReporterOwner;->set(Landroid/view/View;Landroidx/activity/FullyDrawnReporterOwner;)V
Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner;
HPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner;->get(Landroid/view/View;)Landroidx/activity/OnBackPressedDispatcherOwner;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner;->set(Landroid/view/View;Landroidx/activity/OnBackPressedDispatcherOwner;)V
Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;-><clinit>()V
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;-><init>()V
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->invoke(Landroid/view/View;)Landroid/view/View;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;-><clinit>()V
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;-><init>()V
HPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->invoke(Landroid/view/View;)Landroidx/activity/OnBackPressedDispatcherOwner;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/activity/compose/BackHandlerKt;
HPLandroidx/activity/compose/BackHandlerKt;->BackHandler(ZLkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;II)V
Landroidx/activity/compose/BackHandlerKt$BackHandler$1$1;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;-><init>(Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;Z)V
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->invoke()Ljava/lang/Object;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->invoke()V
Landroidx/activity/compose/BackHandlerKt$BackHandler$2;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;)V
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;-><init>(Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;)V
PLandroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;->dispose()V
Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;-><init>(ZLandroidx/compose/runtime/State;)V
Landroidx/activity/compose/ComponentActivityKt;
HSPLandroidx/activity/compose/ComponentActivityKt;-><clinit>()V
HSPLandroidx/activity/compose/ComponentActivityKt;->setContent$default(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/CompositionContext;Lkotlin/jvm/functions/Function2;ILjava/lang/Object;)V
HSPLandroidx/activity/compose/ComponentActivityKt;->setContent(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/CompositionContext;Lkotlin/jvm/functions/Function2;)V
HSPLandroidx/activity/compose/ComponentActivityKt;->setOwners(Landroidx/activity/ComponentActivity;)V
Landroidx/activity/compose/LocalOnBackPressedDispatcherOwner;
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;-><clinit>()V
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;-><init>()V
HPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;->getCurrent(Landroidx/compose/runtime/Composer;I)Landroidx/activity/OnBackPressedDispatcherOwner;
Landroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;-><clinit>()V
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;-><init>()V
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->invoke()Landroidx/activity/OnBackPressedDispatcherOwner;
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner$LocalOnBackPressedDispatcherOwner$1;->invoke()Ljava/lang/Object;
Landroidx/activity/contextaware/ContextAware;
Landroidx/activity/contextaware/ContextAwareHelper;
HSPLandroidx/activity/contextaware/ContextAwareHelper;-><init>()V
HSPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
PLandroidx/activity/contextaware/ContextAwareHelper;->clearAvailableContext()V
HSPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V
Landroidx/activity/contextaware/OnContextAvailableListener;
Landroidx/activity/result/ActivityResultCaller;
Landroidx/activity/result/ActivityResultRegistry;
HSPLandroidx/activity/result/ActivityResultRegistry;-><init>()V
PLandroidx/activity/result/ActivityResultRegistry;->onSaveInstanceState(Landroid/os/Bundle;)V
Landroidx/activity/result/ActivityResultRegistryOwner;
Landroidx/activity/result/contract/ActivityResultContract;
HSPLandroidx/activity/result/contract/ActivityResultContract;-><init>()V
Landroidx/activity/result/contract/ActivityResultContracts$RequestPermission;
HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestPermission;-><init>()V
Landroidx/appcompat/R$drawable;
Landroidx/appcompat/R$styleable;
HSPLandroidx/appcompat/R$styleable;-><clinit>()V
Landroidx/appcompat/widget/AppCompatBackgroundHelper;
HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;-><init>(Landroid/view/View;)V
HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
Landroidx/appcompat/widget/AppCompatDrawableManager;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;-><clinit>()V
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;-><init>()V
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->get()Landroidx/appcompat/widget/AppCompatDrawableManager;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->preload()V
Landroidx/appcompat/widget/AppCompatDrawableManager$1;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;-><init>()V
Landroidx/appcompat/widget/AppCompatEditText;
Landroidx/appcompat/widget/AppCompatEmojiTextHelper;
HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;-><init>(Landroid/widget/TextView;)V
HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;->getFilters([Landroid/text/InputFilter;)[Landroid/text/InputFilter;
HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
HSPLandroidx/appcompat/widget/AppCompatEmojiTextHelper;->setEnabled(Z)V
Landroidx/appcompat/widget/AppCompatTextClassifierHelper;
HSPLandroidx/appcompat/widget/AppCompatTextClassifierHelper;-><init>(Landroid/widget/TextView;)V
Landroidx/appcompat/widget/AppCompatTextHelper;
HSPLandroidx/appcompat/widget/AppCompatTextHelper;-><init>(Landroid/widget/TextView;)V
HSPLandroidx/appcompat/widget/AppCompatTextHelper;->applyCompoundDrawablesTints()V
HPLandroidx/appcompat/widget/AppCompatTextHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
HSPLandroidx/appcompat/widget/AppCompatTextHelper;->onSetCompoundDrawables()V
HSPLandroidx/appcompat/widget/AppCompatTextHelper;->setCompoundDrawables(Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;)V
HPLandroidx/appcompat/widget/AppCompatTextHelper;->updateTypefaceAndStyle(Landroid/content/Context;Landroidx/appcompat/widget/TintTypedArray;)V
Landroidx/appcompat/widget/AppCompatTextHelper$1;
HSPLandroidx/appcompat/widget/AppCompatTextHelper$1;-><init>(Landroidx/appcompat/widget/AppCompatTextHelper;IILjava/lang/ref/WeakReference;)V
HSPLandroidx/appcompat/widget/AppCompatTextHelper$1;->onFontRetrievalFailed(I)V
Landroidx/appcompat/widget/AppCompatTextView;
HSPLandroidx/appcompat/widget/AppCompatTextView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
HSPLandroidx/appcompat/widget/AppCompatTextView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
HSPLandroidx/appcompat/widget/AppCompatTextView;->getEmojiTextViewHelper()Landroidx/appcompat/widget/AppCompatEmojiTextHelper;
HSPLandroidx/appcompat/widget/AppCompatTextView;->onTextChanged(Ljava/lang/CharSequence;III)V
HSPLandroidx/appcompat/widget/AppCompatTextView;->setCompoundDrawables(Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;)V
HSPLandroidx/appcompat/widget/AppCompatTextView;->setCompoundDrawablesWithIntrinsicBounds(Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;Landroid/graphics/drawable/Drawable;)V
HSPLandroidx/appcompat/widget/AppCompatTextView;->setFilters([Landroid/text/InputFilter;)V
HSPLandroidx/appcompat/widget/AppCompatTextView;->setTypeface(Landroid/graphics/Typeface;I)V
Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;-><clinit>()V
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;-><init>(Landroid/widget/TextView;)V
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;->getAutoSizeTextType()I
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper;->supportsAutoSizeText()Z
Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl;
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl;-><init>()V
Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl23;
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl23;-><init>()V
Landroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl29;
HSPLandroidx/appcompat/widget/AppCompatTextViewAutoSizeHelper$Impl29;-><init>()V
Landroidx/appcompat/widget/EmojiCompatConfigurationView;
Landroidx/appcompat/widget/ResourceManagerInternal;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;-><clinit>()V
HSPLandroidx/appcompat/widget/ResourceManagerInternal;-><init>()V
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->get()Landroidx/appcompat/widget/ResourceManagerInternal;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->installDefaultInflateDelegates(Landroidx/appcompat/widget/ResourceManagerInternal;)V
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->setHooks(Landroidx/appcompat/widget/ResourceManagerInternal$ResourceManagerHooks;)V
Landroidx/appcompat/widget/ResourceManagerInternal$ColorFilterLruCache;
HSPLandroidx/appcompat/widget/ResourceManagerInternal$ColorFilterLruCache;-><init>(I)V
Landroidx/appcompat/widget/ResourceManagerInternal$ResourceManagerHooks;
Landroidx/appcompat/widget/ResourcesWrapper;
Landroidx/appcompat/widget/ThemeUtils;
HSPLandroidx/appcompat/widget/ThemeUtils;-><clinit>()V
HSPLandroidx/appcompat/widget/ThemeUtils;->checkAppCompatTheme(Landroid/view/View;Landroid/content/Context;)V
Landroidx/appcompat/widget/TintContextWrapper;
HSPLandroidx/appcompat/widget/TintContextWrapper;-><clinit>()V
HSPLandroidx/appcompat/widget/TintContextWrapper;->shouldWrap(Landroid/content/Context;)Z
HSPLandroidx/appcompat/widget/TintContextWrapper;->wrap(Landroid/content/Context;)Landroid/content/Context;
Landroidx/appcompat/widget/TintResources;
Landroidx/appcompat/widget/TintTypedArray;
HSPLandroidx/appcompat/widget/TintTypedArray;-><init>(Landroid/content/Context;Landroid/content/res/TypedArray;)V
HSPLandroidx/appcompat/widget/TintTypedArray;->getDimensionPixelSize(II)I
HSPLandroidx/appcompat/widget/TintTypedArray;->getFont(IILandroidx/core/content/res/ResourcesCompat$FontCallback;)Landroid/graphics/Typeface;
HSPLandroidx/appcompat/widget/TintTypedArray;->getInt(II)I
HSPLandroidx/appcompat/widget/TintTypedArray;->getResourceId(II)I
HSPLandroidx/appcompat/widget/TintTypedArray;->getString(I)Ljava/lang/String;
HSPLandroidx/appcompat/widget/TintTypedArray;->getWrappedTypeArray()Landroid/content/res/TypedArray;
HSPLandroidx/appcompat/widget/TintTypedArray;->hasValue(I)Z
HSPLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;I[I)Landroidx/appcompat/widget/TintTypedArray;
HSPLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;Landroid/util/AttributeSet;[I)Landroidx/appcompat/widget/TintTypedArray;
HSPLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;Landroid/util/AttributeSet;[III)Landroidx/appcompat/widget/TintTypedArray;
HSPLandroidx/appcompat/widget/TintTypedArray;->recycle()V
Landroidx/appcompat/widget/VectorEnabledTintResources;
HSPLandroidx/appcompat/widget/VectorEnabledTintResources;-><clinit>()V
HSPLandroidx/appcompat/widget/VectorEnabledTintResources;->isCompatVectorFromResourcesEnabled()Z
HSPLandroidx/appcompat/widget/VectorEnabledTintResources;->shouldBeUsed()Z
Landroidx/appcompat/widget/ViewUtils;
HSPLandroidx/appcompat/widget/ViewUtils;-><clinit>()V
Landroidx/arch/core/executor/ArchTaskExecutor;
HSPLandroidx/arch/core/executor/ArchTaskExecutor;-><clinit>()V
HSPLandroidx/arch/core/executor/ArchTaskExecutor;-><init>()V
HPLandroidx/arch/core/executor/ArchTaskExecutor;->executeOnDiskIO(Ljava/lang/Runnable;)V
HSPLandroidx/arch/core/executor/ArchTaskExecutor;->getIOThreadExecutor()Ljava/util/concurrent/Executor;
HPLandroidx/arch/core/executor/ArchTaskExecutor;->getInstance()Landroidx/arch/core/executor/ArchTaskExecutor;
HPLandroidx/arch/core/executor/ArchTaskExecutor;->isMainThread()Z
HPLandroidx/arch/core/executor/ArchTaskExecutor;->lambda$static$1(Ljava/lang/Runnable;)V
Landroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda0;
HSPLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda0;-><init>()V
Landroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;
HSPLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;-><init>()V
HPLandroidx/arch/core/executor/ArchTaskExecutor$$ExternalSyntheticLambda1;->execute(Ljava/lang/Runnable;)V
Landroidx/arch/core/executor/DefaultTaskExecutor;
HSPLandroidx/arch/core/executor/DefaultTaskExecutor;-><init>()V
HPLandroidx/arch/core/executor/DefaultTaskExecutor;->executeOnDiskIO(Ljava/lang/Runnable;)V
HPLandroidx/arch/core/executor/DefaultTaskExecutor;->isMainThread()Z
Landroidx/arch/core/executor/DefaultTaskExecutor$1;
HSPLandroidx/arch/core/executor/DefaultTaskExecutor$1;-><init>(Landroidx/arch/core/executor/DefaultTaskExecutor;)V
HSPLandroidx/arch/core/executor/DefaultTaskExecutor$1;->newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;
Landroidx/arch/core/executor/TaskExecutor;
HSPLandroidx/arch/core/executor/TaskExecutor;-><init>()V
Landroidx/arch/core/internal/FastSafeIterableMap;
HPLandroidx/arch/core/internal/FastSafeIterableMap;-><init>()V
HPLandroidx/arch/core/internal/FastSafeIterableMap;->ceil(Ljava/lang/Object;)Ljava/util/Map$Entry;
HPLandroidx/arch/core/internal/FastSafeIterableMap;->contains(Ljava/lang/Object;)Z
HPLandroidx/arch/core/internal/FastSafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
HPLandroidx/arch/core/internal/FastSafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/arch/core/internal/FastSafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/arch/core/internal/SafeIterableMap;
HPLandroidx/arch/core/internal/SafeIterableMap;-><init>()V
HPLandroidx/arch/core/internal/SafeIterableMap;->descendingIterator()Ljava/util/Iterator;
HPLandroidx/arch/core/internal/SafeIterableMap;->eldest()Ljava/util/Map$Entry;
HPLandroidx/arch/core/internal/SafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
HPLandroidx/arch/core/internal/SafeIterableMap;->iterator()Ljava/util/Iterator;
HPLandroidx/arch/core/internal/SafeIterableMap;->iteratorWithAdditions()Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
HPLandroidx/arch/core/internal/SafeIterableMap;->newest()Ljava/util/Map$Entry;
HPLandroidx/arch/core/internal/SafeIterableMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/arch/core/internal/SafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/arch/core/internal/SafeIterableMap;->size()I
Landroidx/arch/core/internal/SafeIterableMap$AscendingIterator;
HSPLandroidx/arch/core/internal/SafeIterableMap$AscendingIterator;-><init>(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
PLandroidx/arch/core/internal/SafeIterableMap$DescendingIterator;-><init>(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
PLandroidx/arch/core/internal/SafeIterableMap$DescendingIterator;->forward(Landroidx/arch/core/internal/SafeIterableMap$Entry;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
Landroidx/arch/core/internal/SafeIterableMap$Entry;
HPLandroidx/arch/core/internal/SafeIterableMap$Entry;-><init>(Ljava/lang/Object;Ljava/lang/Object;)V
HPLandroidx/arch/core/internal/SafeIterableMap$Entry;->getKey()Ljava/lang/Object;
HPLandroidx/arch/core/internal/SafeIterableMap$Entry;->getValue()Ljava/lang/Object;
Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
HPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;-><init>(Landroidx/arch/core/internal/SafeIterableMap;)V
HPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->hasNext()Z
HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/lang/Object;
HPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/util/Map$Entry;
HPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->supportRemove(Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
Landroidx/arch/core/internal/SafeIterableMap$ListIterator;
HPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;-><init>(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->hasNext()Z
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->next()Ljava/lang/Object;
HPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->next()Ljava/util/Map$Entry;
HPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->nextNode()Landroidx/arch/core/internal/SafeIterableMap$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->supportRemove(Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
Landroidx/arch/core/internal/SafeIterableMap$SupportRemove;
HSPLandroidx/arch/core/internal/SafeIterableMap$SupportRemove;-><init>()V
Landroidx/collection/ArrayMap;
HSPLandroidx/collection/ArrayMap;-><init>()V
HSPLandroidx/collection/ArrayMap;->containsKey(Ljava/lang/Object;)Z
HSPLandroidx/collection/ArrayMap;->keySet()Ljava/util/Set;
Landroidx/collection/ArrayMap$KeySet;
HSPLandroidx/collection/ArrayMap$KeySet;-><init>(Landroidx/collection/ArrayMap;)V
HSPLandroidx/collection/ArrayMap$KeySet;->isEmpty()Z
Landroidx/collection/ArraySet;
HSPLandroidx/collection/ArraySet;-><init>()V
HPLandroidx/collection/ArraySet;-><init>(I)V
HSPLandroidx/collection/ArraySet;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/ArraySet;->add(Ljava/lang/Object;)Z
HSPLandroidx/collection/ArraySet;->clear()V
HSPLandroidx/collection/ArraySet;->getArray$collection()[Ljava/lang/Object;
HSPLandroidx/collection/ArraySet;->getHashes$collection()[I
HSPLandroidx/collection/ArraySet;->get_size$collection()I
HSPLandroidx/collection/ArraySet;->setArray$collection([Ljava/lang/Object;)V
HSPLandroidx/collection/ArraySet;->setHashes$collection([I)V
HSPLandroidx/collection/ArraySet;->set_size$collection(I)V
HSPLandroidx/collection/ArraySet;->toArray()[Ljava/lang/Object;
Landroidx/collection/ArraySetKt;
HSPLandroidx/collection/ArraySetKt;->allocArrays(Landroidx/collection/ArraySet;I)V
HSPLandroidx/collection/ArraySetKt;->binarySearchInternal(Landroidx/collection/ArraySet;I)I
HSPLandroidx/collection/ArraySetKt;->indexOf(Landroidx/collection/ArraySet;Ljava/lang/Object;I)I
Landroidx/collection/IntIntMap;
HSPLandroidx/collection/IntIntMap;-><init>()V
HSPLandroidx/collection/IntIntMap;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/IntIntMap;->getCapacity()I
Landroidx/collection/IntObjectMap;
HSPLandroidx/collection/IntObjectMap;-><init>()V
HSPLandroidx/collection/IntObjectMap;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/IntObjectMap;->getCapacity()I
Landroidx/collection/IntObjectMapKt;
HSPLandroidx/collection/IntObjectMapKt;-><clinit>()V
HSPLandroidx/collection/IntObjectMapKt;->mutableIntObjectMapOf()Landroidx/collection/MutableIntObjectMap;
Landroidx/collection/IntSet;
HSPLandroidx/collection/IntSet;-><init>()V
HSPLandroidx/collection/IntSet;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/IntSet;->getCapacity()I
Landroidx/collection/IntSetKt;
HSPLandroidx/collection/IntSetKt;-><clinit>()V
HPLandroidx/collection/IntSetKt;->getEmptyIntArray()[I
Landroidx/collection/LongSparseArray;
HSPLandroidx/collection/LongSparseArray;-><init>(I)V
HSPLandroidx/collection/LongSparseArray;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
Landroidx/collection/LruCache;
HSPLandroidx/collection/LruCache;-><init>(I)V
HSPLandroidx/collection/LruCache;->create(Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/collection/LruCache;->entryRemoved(ZLjava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
HPLandroidx/collection/LruCache;->get(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/LruCache;->maxSize()I
HPLandroidx/collection/LruCache;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/LruCache;->safeSizeOf(Ljava/lang/Object;Ljava/lang/Object;)I
HPLandroidx/collection/LruCache;->sizeOf(Ljava/lang/Object;Ljava/lang/Object;)I
HPLandroidx/collection/LruCache;->snapshot()Ljava/util/Map;
HPLandroidx/collection/LruCache;->trimToSize(I)V
Landroidx/collection/MutableIntIntMap;
HSPLandroidx/collection/MutableIntIntMap;-><init>(I)V
HSPLandroidx/collection/MutableIntIntMap;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/MutableIntIntMap;->findFirstAvailableSlot(I)I
HSPLandroidx/collection/MutableIntIntMap;->findInsertIndex(I)I
HSPLandroidx/collection/MutableIntIntMap;->initializeGrowth()V
HSPLandroidx/collection/MutableIntIntMap;->initializeMetadata(I)V
HSPLandroidx/collection/MutableIntIntMap;->initializeStorage(I)V
HSPLandroidx/collection/MutableIntIntMap;->set(II)V
Landroidx/collection/MutableIntObjectMap;
HSPLandroidx/collection/MutableIntObjectMap;-><init>(I)V
HSPLandroidx/collection/MutableIntObjectMap;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/collection/MutableIntObjectMap;->findAbsoluteInsertIndex(I)I
HSPLandroidx/collection/MutableIntObjectMap;->findFirstAvailableSlot(I)I
HSPLandroidx/collection/MutableIntObjectMap;->initializeGrowth()V
HSPLandroidx/collection/MutableIntObjectMap;->initializeMetadata(I)V
HSPLandroidx/collection/MutableIntObjectMap;->initializeStorage(I)V
HSPLandroidx/collection/MutableIntObjectMap;->set(ILjava/lang/Object;)V
Landroidx/collection/MutableIntSet;
HSPLandroidx/collection/MutableIntSet;-><init>(I)V
HSPLandroidx/collection/MutableIntSet;->initializeGrowth()V
HSPLandroidx/collection/MutableIntSet;->initializeMetadata(I)V
HSPLandroidx/collection/MutableIntSet;->initializeStorage(I)V
Landroidx/collection/MutableObjectIntMap;
HPLandroidx/collection/MutableObjectIntMap;-><init>(I)V
HPLandroidx/collection/MutableObjectIntMap;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/collection/MutableObjectIntMap;->adjustStorage()V
HPLandroidx/collection/MutableObjectIntMap;->findFirstAvailableSlot(I)I
HPLandroidx/collection/MutableObjectIntMap;->findIndex(Ljava/lang/Object;)I
HPLandroidx/collection/MutableObjectIntMap;->initializeGrowth()V
HPLandroidx/collection/MutableObjectIntMap;->initializeMetadata(I)V
HPLandroidx/collection/MutableObjectIntMap;->initializeStorage(I)V
HPLandroidx/collection/MutableObjectIntMap;->put(Ljava/lang/Object;II)I
HPLandroidx/collection/MutableObjectIntMap;->removeValueAt(I)V
HPLandroidx/collection/MutableObjectIntMap;->resizeStorage(I)V
HPLandroidx/collection/MutableObjectIntMap;->set(Ljava/lang/Object;I)V
Landroidx/collection/MutableScatterMap;
HPLandroidx/collection/MutableScatterMap;-><init>(I)V
HPLandroidx/collection/MutableScatterMap;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/collection/MutableScatterMap;->adjustStorage()V
HPLandroidx/collection/MutableScatterMap;->clear()V
HPLandroidx/collection/MutableScatterMap;->findFirstAvailableSlot(I)I
HPLandroidx/collection/MutableScatterMap;->findInsertIndex(Ljava/lang/Object;)I
HPLandroidx/collection/MutableScatterMap;->initializeGrowth()V
HPLandroidx/collection/MutableScatterMap;->initializeMetadata(I)V
HPLandroidx/collection/MutableScatterMap;->initializeStorage(I)V
HPLandroidx/collection/MutableScatterMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/collection/MutableScatterMap;->removeValueAt(I)Ljava/lang/Object;
HPLandroidx/collection/MutableScatterMap;->resizeStorage(I)V
HPLandroidx/collection/MutableScatterMap;->set(Ljava/lang/Object;Ljava/lang/Object;)V
Landroidx/collection/MutableScatterSet;
HPLandroidx/collection/MutableScatterSet;-><init>(I)V
HPLandroidx/collection/MutableScatterSet;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/collection/MutableScatterSet;->add(Ljava/lang/Object;)Z
HPLandroidx/collection/MutableScatterSet;->adjustStorage()V
HPLandroidx/collection/MutableScatterSet;->clear()V
HPLandroidx/collection/MutableScatterSet;->findAbsoluteInsertIndex(Ljava/lang/Object;)I
HPLandroidx/collection/MutableScatterSet;->findFirstAvailableSlot(I)I
HPLandroidx/collection/MutableScatterSet;->initializeGrowth()V
HPLandroidx/collection/MutableScatterSet;->initializeMetadata(I)V
HPLandroidx/collection/MutableScatterSet;->initializeStorage(I)V
HPLandroidx/collection/MutableScatterSet;->remove(Ljava/lang/Object;)Z
HPLandroidx/collection/MutableScatterSet;->removeElementAt(I)V
HPLandroidx/collection/MutableScatterSet;->resizeStorage(I)V
Landroidx/collection/ObjectIntMap;
HPLandroidx/collection/ObjectIntMap;-><init>()V
HPLandroidx/collection/ObjectIntMap;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/ObjectIntMap;->equals(Ljava/lang/Object;)Z
HPLandroidx/collection/ObjectIntMap;->findKeyIndex(Ljava/lang/Object;)I
HPLandroidx/collection/ObjectIntMap;->getCapacity()I
HSPLandroidx/collection/ObjectIntMap;->getOrDefault(Ljava/lang/Object;I)I
HSPLandroidx/collection/ObjectIntMap;->getSize()I
HPLandroidx/collection/ObjectIntMap;->isNotEmpty()Z
Landroidx/collection/ObjectIntMapKt;
HSPLandroidx/collection/ObjectIntMapKt;-><clinit>()V
HPLandroidx/collection/ObjectIntMapKt;->emptyObjectIntMap()Landroidx/collection/ObjectIntMap;
Landroidx/collection/ScatterMap;
HPLandroidx/collection/ScatterMap;-><init>()V
HPLandroidx/collection/ScatterMap;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/collection/ScatterMap;->containsKey(Ljava/lang/Object;)Z
HPLandroidx/collection/ScatterMap;->get(Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/collection/ScatterMap;->getCapacity()I
HSPLandroidx/collection/ScatterMap;->isNotEmpty()Z
Landroidx/collection/ScatterMapKt;
HSPLandroidx/collection/ScatterMapKt;-><clinit>()V
HPLandroidx/collection/ScatterMapKt;->loadedCapacity(I)I
HPLandroidx/collection/ScatterMapKt;->mutableScatterMapOf()Landroidx/collection/MutableScatterMap;
HSPLandroidx/collection/ScatterMapKt;->nextCapacity(I)I
HPLandroidx/collection/ScatterMapKt;->normalizeCapacity(I)I
HPLandroidx/collection/ScatterMapKt;->unloadedCapacity(I)I
Landroidx/collection/ScatterSet;
HPLandroidx/collection/ScatterSet;-><init>()V
HPLandroidx/collection/ScatterSet;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/collection/ScatterSet;->getCapacity()I
HPLandroidx/collection/ScatterSet;->getSize()I
HPLandroidx/collection/ScatterSet;->isEmpty()Z
Landroidx/collection/SimpleArrayMap;
HSPLandroidx/collection/SimpleArrayMap;-><init>()V
HPLandroidx/collection/SimpleArrayMap;-><init>(I)V
HSPLandroidx/collection/SimpleArrayMap;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/SimpleArrayMap;->containsKey(Ljava/lang/Object;)Z
HSPLandroidx/collection/SimpleArrayMap;->indexOf(Ljava/lang/Object;I)I
HSPLandroidx/collection/SimpleArrayMap;->indexOfKey(Ljava/lang/Object;)I
HSPLandroidx/collection/SimpleArrayMap;->isEmpty()Z
Landroidx/collection/SparseArrayCompat;
HSPLandroidx/collection/SparseArrayCompat;-><init>()V
HPLandroidx/collection/SparseArrayCompat;-><init>(I)V
HSPLandroidx/collection/SparseArrayCompat;-><init>(IILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/collection/SparseArrayCompat;->get(I)Ljava/lang/Object;
HSPLandroidx/collection/SparseArrayCompat;->keyAt(I)I
HSPLandroidx/collection/SparseArrayCompat;->put(ILjava/lang/Object;)V
HPLandroidx/collection/SparseArrayCompat;->size()I
HSPLandroidx/collection/SparseArrayCompat;->valueAt(I)Ljava/lang/Object;
Landroidx/collection/SparseArrayCompatKt;
HSPLandroidx/collection/SparseArrayCompatKt;-><clinit>()V
HSPLandroidx/collection/SparseArrayCompatKt;->commonGet(Landroidx/collection/SparseArrayCompat;I)Ljava/lang/Object;
Landroidx/collection/SparseArrayKt;
HPLandroidx/collection/SparseArrayKt;->valueIterator(Landroidx/collection/SparseArrayCompat;)Ljava/util/Iterator;
Landroidx/collection/SparseArrayKt$valueIterator$1;
HPLandroidx/collection/SparseArrayKt$valueIterator$1;-><init>(Landroidx/collection/SparseArrayCompat;)V
HPLandroidx/collection/SparseArrayKt$valueIterator$1;->hasNext()Z
Landroidx/collection/internal/ContainerHelpersKt;
HSPLandroidx/collection/internal/ContainerHelpersKt;-><clinit>()V
HSPLandroidx/collection/internal/ContainerHelpersKt;->binarySearch([III)I
HSPLandroidx/collection/internal/ContainerHelpersKt;->idealByteArraySize(I)I
HSPLandroidx/collection/internal/ContainerHelpersKt;->idealIntArraySize(I)I
HSPLandroidx/collection/internal/ContainerHelpersKt;->idealLongArraySize(I)I
Landroidx/collection/internal/Lock;
HSPLandroidx/collection/internal/Lock;-><init>()V
Landroidx/collection/internal/LruHashMap;
HSPLandroidx/collection/internal/LruHashMap;-><init>(IF)V
HPLandroidx/collection/internal/LruHashMap;->get(Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/collection/internal/LruHashMap;->getEntries()Ljava/util/Set;
HSPLandroidx/collection/internal/LruHashMap;->isEmpty()Z
HPLandroidx/collection/internal/LruHashMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt;
HSPLandroidx/compose/animation/AnimatedContentKt;-><clinit>()V
HPLandroidx/compose/animation/AnimatedContentKt;->AnimatedContent(Landroidx/compose/animation/core/Transition;Landroidx/compose/ui/Modifier;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Alignment;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;Landroidx/compose/runtime/Composer;II)V
HSPLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-1(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-2(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/EnterTransition;)V
HSPLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-4(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/AnimatedContentKt;->PopulateContentFor$lambda-5(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/ExitTransition;)V
HSPLandroidx/compose/animation/AnimatedContentKt;->SizeTransform$default(ZLkotlin/jvm/functions/Function2;ILjava/lang/Object;)Landroidx/compose/animation/SizeTransform;
HSPLandroidx/compose/animation/AnimatedContentKt;->SizeTransform(ZLkotlin/jvm/functions/Function2;)Landroidx/compose/animation/SizeTransform;
HSPLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-1(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-2(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/EnterTransition;)V
HSPLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-4(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/AnimatedContentKt;->access$PopulateContentFor$lambda-5(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/ExitTransition;)V
HSPLandroidx/compose/animation/AnimatedContentKt;->access$getScaleToFitTransitionKey$p()Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/ui/Alignment;Landroidx/compose/ui/unit/LayoutDirection;Landroidx/compose/ui/Modifier;Lkotlinx/coroutines/CoroutineScope;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function4;Lkotlin/jvm/functions/Function1;)V
HPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6;->invoke(Landroidx/compose/ui/layout/LookaheadScope;Landroidx/compose/runtime/Composer;I)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$2$1;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$2$1;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/AnimatedContentRootScope;Landroidx/compose/runtime/snapshots/SnapshotStateList;Lkotlin/jvm/functions/Function4;Lkotlin/jvm/functions/Function1;)V
HPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$2$1;->invoke(Landroidx/compose/runtime/Composer;I)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$2$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3;-><init>(Landroidx/compose/animation/AnimatedContentRootScope;)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3;->invoke-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
Landroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3$1;
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3$1;-><init>(Landroidx/compose/ui/layout/Placeable;Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/animation/AnimatedContentRootScope;)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/AnimatedContentKt$AnimatedContent$6$3$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1;-><init>(F)V
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1;->invoke-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1$1;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1$1;-><init>(Landroidx/compose/ui/layout/Placeable;F)V
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$2;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$2;-><init>(ZLandroidx/compose/animation/AnimatedContentRootScope;Landroidx/compose/animation/core/Transition;)V
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$2;->invoke-ozmzZPI(J)V
Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$3;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$3;-><init>(Ljava/lang/Object;)V
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$3;->invoke(Ljava/lang/Object;)Ljava/lang/Boolean;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$3;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$4;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$4;-><init>(Landroidx/compose/runtime/MutableState;)V
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$4;->invoke(Landroidx/compose/animation/EnterExitState;Landroidx/compose/animation/EnterExitState;)Ljava/lang/Boolean;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$4;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5;-><init>(Landroidx/compose/runtime/snapshots/SnapshotStateList;Ljava/lang/Object;Landroidx/compose/animation/AnimatedContentRootScope;Lkotlin/jvm/functions/Function4;I)V
HPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5;->invoke(Landroidx/compose/animation/AnimatedVisibilityScope;Landroidx/compose/runtime/Composer;I)V
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1;-><init>(Landroidx/compose/runtime/snapshots/SnapshotStateList;Ljava/lang/Object;Landroidx/compose/animation/AnimatedContentRootScope;)V
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1$invoke$$inlined$onDispose$1;
HSPLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1$invoke$$inlined$onDispose$1;-><init>(Landroidx/compose/runtime/snapshots/SnapshotStateList;Ljava/lang/Object;Landroidx/compose/animation/AnimatedContentRootScope;)V
PLandroidx/compose/animation/AnimatedContentKt$PopulateContentFor$5$1$invoke$$inlined$onDispose$1;->dispose()V
Landroidx/compose/animation/AnimatedContentKt$SizeTransform$1;
HSPLandroidx/compose/animation/AnimatedContentKt$SizeTransform$1;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedContentKt$SizeTransform$1;-><init>()V
Landroidx/compose/animation/AnimatedContentMeasurePolicy;
HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy;-><init>(Landroidx/compose/animation/AnimatedContentRootScope;Ljava/util/Map;)V
HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy;->getRootScope()Landroidx/compose/animation/AnimatedContentRootScope;
HPLandroidx/compose/animation/AnimatedContentMeasurePolicy;->measure-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Ljava/util/List;J)Landroidx/compose/ui/layout/MeasureResult;
Landroidx/compose/animation/AnimatedContentMeasurePolicy$measure$4;
HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$4;-><init>([Landroidx/compose/ui/layout/Placeable;Landroidx/compose/animation/AnimatedContentMeasurePolicy;II)V
HPLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$4;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/AnimatedContentMeasurePolicy$measure$4;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentRootScope;
HSPLandroidx/compose/animation/AnimatedContentRootScope;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedContentRootScope;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/ui/layout/LookaheadScope;Lkotlinx/coroutines/CoroutineScope;Landroidx/compose/ui/Alignment;Landroidx/compose/ui/unit/LayoutDirection;)V
HPLandroidx/compose/animation/AnimatedContentRootScope;->createSizeAnimationModifier$animation_release(Landroidx/compose/animation/ContentTransform;Landroidx/compose/runtime/Composer;I)Landroidx/compose/ui/Modifier;
HSPLandroidx/compose/animation/AnimatedContentRootScope;->createSizeAnimationModifier$lambda$3(Landroidx/compose/runtime/MutableState;)Z
HSPLandroidx/compose/animation/AnimatedContentRootScope;->createSizeAnimationModifier$lambda$4(Landroidx/compose/runtime/MutableState;Z)V
HSPLandroidx/compose/animation/AnimatedContentRootScope;->getContentAlignment()Landroidx/compose/ui/Alignment;
HSPLandroidx/compose/animation/AnimatedContentRootScope;->getInitialState()Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedContentRootScope;->getTargetSizeMap$animation_release()Ljava/util/Map;
HSPLandroidx/compose/animation/AnimatedContentRootScope;->getTargetState()Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedContentRootScope;->setContentAlignment(Landroidx/compose/ui/Alignment;)V
HSPLandroidx/compose/animation/AnimatedContentRootScope;->setLayoutDirection$animation_release(Landroidx/compose/ui/unit/LayoutDirection;)V
HSPLandroidx/compose/animation/AnimatedContentRootScope;->setMeasuredSize-ozmzZPI$animation_release(J)V
HSPLandroidx/compose/animation/AnimatedContentRootScope;->setRootCoords(Landroidx/compose/ui/layout/LayoutCoordinates;)V
HSPLandroidx/compose/animation/AnimatedContentRootScope;->setRootLookaheadCoords(Landroidx/compose/ui/layout/LayoutCoordinates;)V
Landroidx/compose/animation/AnimatedContentRootScope$ChildData;
HSPLandroidx/compose/animation/AnimatedContentRootScope$ChildData;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedContentRootScope$ChildData;-><init>(Ljava/lang/Object;)V
HSPLandroidx/compose/animation/AnimatedContentRootScope$ChildData;->all(Lkotlin/jvm/functions/Function1;)Z
HSPLandroidx/compose/animation/AnimatedContentRootScope$ChildData;->getTargetState()Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedContentRootScope$ChildData;->modifyParentData(Landroidx/compose/ui/unit/Density;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedContentScope;
Landroidx/compose/animation/AnimatedContentScopeImpl;
HSPLandroidx/compose/animation/AnimatedContentScopeImpl;-><init>(Landroidx/compose/animation/AnimatedVisibilityScope;)V
Landroidx/compose/animation/AnimatedContentTransitionScope;
Landroidx/compose/animation/AnimatedEnterExitMeasurePolicy;
HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy;-><init>(Landroidx/compose/animation/AnimatedVisibilityScopeImpl;)V
HPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy;->measure-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Ljava/util/List;J)Landroidx/compose/ui/layout/MeasureResult;
Landroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;
HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;-><init>(Ljava/util/List;)V
HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/AnimatedEnterExitMeasurePolicy$measure$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityKt;
HPLandroidx/compose/animation/AnimatedVisibilityKt;->AnimatedEnterExitImpl(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Lkotlin/jvm/functions/Function2;Landroidx/compose/animation/OnLookaheadMeasured;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V
HPLandroidx/compose/animation/AnimatedVisibilityKt;->AnimatedVisibility(ZLandroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;II)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt;->AnimatedVisibilityImpl(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;I)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt;->access$getExitFinished(Landroidx/compose/animation/core/Transition;)Z
HSPLandroidx/compose/animation/AnimatedVisibilityKt;->getExitFinished(Landroidx/compose/animation/core/Transition;)Z
HPLandroidx/compose/animation/AnimatedVisibilityKt;->targetEnterExit(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Ljava/lang/Object;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/EnterExitState;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2;-><init>(Landroidx/compose/animation/OnLookaheadMeasured;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2;->invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2;->invoke-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2$1$1;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2$1$1;-><init>(Landroidx/compose/ui/layout/Placeable;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2$1$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$2$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$4;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$4;-><init>(Landroidx/compose/animation/core/Transition;Lkotlin/jvm/functions/Function1;Landroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Lkotlin/jvm/functions/Function2;Landroidx/compose/animation/OnLookaheadMeasured;Lkotlin/jvm/functions/Function3;II)V
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/runtime/State;Lkotlin/coroutines/Continuation;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invoke(Landroidx/compose/runtime/ProduceStateScope;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;-><init>(Landroidx/compose/animation/core/Transition;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;->invoke()Ljava/lang/Boolean;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$1;->invoke()Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;-><init>(Landroidx/compose/runtime/ProduceStateScope;Landroidx/compose/animation/core/Transition;Landroidx/compose/runtime/State;)V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;->emit(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedEnterExitImpl$shouldDisposeAfterExit$2$1$2;->emit(ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$1;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$1;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$1;-><init>()V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$1;->invoke(Z)Ljava/lang/Boolean;
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$2;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibility$2;-><init>(ZLandroidx/compose/ui/Modifier;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Lkotlin/jvm/functions/Function3;II)V
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$1$1;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$1$1;-><init>(Lkotlin/jvm/functions/Function1;Landroidx/compose/animation/core/Transition;)V
Landroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$2;
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$2;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedVisibilityKt$AnimatedVisibilityImpl$2;-><init>()V
Landroidx/compose/animation/AnimatedVisibilityScope;
Landroidx/compose/animation/AnimatedVisibilityScopeImpl;
HSPLandroidx/compose/animation/AnimatedVisibilityScopeImpl;-><clinit>()V
HSPLandroidx/compose/animation/AnimatedVisibilityScopeImpl;-><init>(Landroidx/compose/animation/core/Transition;)V
HSPLandroidx/compose/animation/AnimatedVisibilityScopeImpl;->getTargetSize$animation_release()Landroidx/compose/runtime/MutableState;
Landroidx/compose/animation/AnimationModifierKt;
HSPLandroidx/compose/animation/AnimationModifierKt;-><clinit>()V
HSPLandroidx/compose/animation/AnimationModifierKt;->getInvalidSize()J
HSPLandroidx/compose/animation/AnimationModifierKt;->isValid-ozmzZPI(J)Z
Landroidx/compose/animation/ChangeSize;
HSPLandroidx/compose/animation/ChangeSize;-><clinit>()V
HSPLandroidx/compose/animation/ChangeSize;-><init>(Landroidx/compose/ui/Alignment;Lkotlin/jvm/functions/Function1;Landroidx/compose/animation/core/FiniteAnimationSpec;Z)V
Landroidx/compose/animation/ColorVectorConverterKt;
HSPLandroidx/compose/animation/ColorVectorConverterKt;-><clinit>()V
HSPLandroidx/compose/animation/ColorVectorConverterKt;->getVectorConverter(Landroidx/compose/ui/graphics/Color$Companion;)Lkotlin/jvm/functions/Function1;
Landroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;
HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;-><clinit>()V
HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;-><init>()V
HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;->invoke(Landroidx/compose/ui/graphics/colorspace/ColorSpace;)Landroidx/compose/animation/core/TwoWayConverter;
HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;
HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;-><clinit>()V
HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;-><init>()V
HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$1;->invoke-8_81llA(J)Landroidx/compose/animation/core/AnimationVector4D;
Landroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$2;
HSPLandroidx/compose/animation/ColorVectorConverterKt$ColorToVector$1$2;-><init>(Landroidx/compose/ui/graphics/colorspace/ColorSpace;)V
Landroidx/compose/animation/ContentTransform;
HSPLandroidx/compose/animation/ContentTransform;-><clinit>()V
HSPLandroidx/compose/animation/ContentTransform;-><init>(Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;FLandroidx/compose/animation/SizeTransform;)V
HSPLandroidx/compose/animation/ContentTransform;-><init>(Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;FLandroidx/compose/animation/SizeTransform;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/ContentTransform;->getSizeTransform()Landroidx/compose/animation/SizeTransform;
HSPLandroidx/compose/animation/ContentTransform;->getTargetContentEnter()Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/ContentTransform;->getTargetContentZIndex()F
Landroidx/compose/animation/EnterExitState;
HSPLandroidx/compose/animation/EnterExitState;->$values()[Landroidx/compose/animation/EnterExitState;
HSPLandroidx/compose/animation/EnterExitState;-><clinit>()V
HSPLandroidx/compose/animation/EnterExitState;-><init>(Ljava/lang/String;I)V
Landroidx/compose/animation/EnterExitTransitionElement;
HSPLandroidx/compose/animation/EnterExitTransitionElement;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;)V
HSPLandroidx/compose/animation/EnterExitTransitionElement;->create()Landroidx/compose/animation/EnterExitTransitionModifierNode;
HSPLandroidx/compose/animation/EnterExitTransitionElement;->create()Landroidx/compose/ui/Modifier$Node;
Landroidx/compose/animation/EnterExitTransitionKt;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->$r8$lambda$pdcBkeht65McNmOdPY-G1SsWYlU(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)Lkotlin/jvm/functions/Function1;
HSPLandroidx/compose/animation/EnterExitTransitionKt;-><clinit>()V
HSPLandroidx/compose/animation/EnterExitTransitionKt;->createGraphicsLayerBlock$lambda$11(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)Lkotlin/jvm/functions/Function1;
HPLandroidx/compose/animation/EnterExitTransitionKt;->createGraphicsLayerBlock(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;
HPLandroidx/compose/animation/EnterExitTransitionKt;->createModifier(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Ljava/lang/String;Landroidx/compose/runtime/Composer;I)Landroidx/compose/ui/Modifier;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->expandHorizontally$default(Landroidx/compose/animation/core/FiniteAnimationSpec;Landroidx/compose/ui/Alignment$Horizontal;ZLkotlin/jvm/functions/Function1;ILjava/lang/Object;)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->expandHorizontally(Landroidx/compose/animation/core/FiniteAnimationSpec;Landroidx/compose/ui/Alignment$Horizontal;ZLkotlin/jvm/functions/Function1;)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->expandIn(Landroidx/compose/animation/core/FiniteAnimationSpec;Landroidx/compose/ui/Alignment;ZLkotlin/jvm/functions/Function1;)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->fadeIn$default(Landroidx/compose/animation/core/FiniteAnimationSpec;FILjava/lang/Object;)Landroidx/compose/animation/EnterTransition;
HPLandroidx/compose/animation/EnterExitTransitionKt;->fadeIn(Landroidx/compose/animation/core/FiniteAnimationSpec;F)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->fadeOut$default(Landroidx/compose/animation/core/FiniteAnimationSpec;FILjava/lang/Object;)Landroidx/compose/animation/ExitTransition;
HPLandroidx/compose/animation/EnterExitTransitionKt;->fadeOut(Landroidx/compose/animation/core/FiniteAnimationSpec;F)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->get(Landroidx/compose/animation/EnterTransition;Ljava/lang/Object;)Landroidx/compose/ui/node/ModifierNodeElement;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->get(Landroidx/compose/animation/ExitTransition;Ljava/lang/Object;)Landroidx/compose/ui/node/ModifierNodeElement;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->shrinkHorizontally$default(Landroidx/compose/animation/core/FiniteAnimationSpec;Landroidx/compose/ui/Alignment$Horizontal;ZLkotlin/jvm/functions/Function1;ILjava/lang/Object;)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->shrinkHorizontally(Landroidx/compose/animation/core/FiniteAnimationSpec;Landroidx/compose/ui/Alignment$Horizontal;ZLkotlin/jvm/functions/Function1;)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->shrinkOut(Landroidx/compose/animation/core/FiniteAnimationSpec;Landroidx/compose/ui/Alignment;ZLkotlin/jvm/functions/Function1;)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->toAlignment(Landroidx/compose/ui/Alignment$Horizontal;)Landroidx/compose/ui/Alignment;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter$lambda$4(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter$lambda$5(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/EnterTransition;)V
HPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveEnter(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit$lambda$7(Landroidx/compose/runtime/MutableState;)Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit$lambda$8(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/ExitTransition;)V
HPLandroidx/compose/animation/EnterExitTransitionKt;->trackActiveExit(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/ExitTransition;
Landroidx/compose/animation/EnterExitTransitionKt$$ExternalSyntheticLambda0;
HSPLandroidx/compose/animation/EnterExitTransitionKt$$ExternalSyntheticLambda0;-><init>(Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/core/Transition$DeferredAnimation;)V
HSPLandroidx/compose/animation/EnterExitTransitionKt$$ExternalSyntheticLambda0;->init()Lkotlin/jvm/functions/Function1;
Landroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$1;
HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$1;-><clinit>()V
HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$1;-><init>()V
Landroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$2;
HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$2;-><clinit>()V
HSPLandroidx/compose/animation/EnterExitTransitionKt$TransformOriginVectorConverter$2;-><init>()V
Landroidx/compose/animation/EnterExitTransitionKt$createGraphicsLayerBlock$1$block$1;
HSPLandroidx/compose/animation/EnterExitTransitionKt$createGraphicsLayerBlock$1$block$1;-><init>(Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;)V
HSPLandroidx/compose/animation/EnterExitTransitionKt$createGraphicsLayerBlock$1$block$1;->invoke(Landroidx/compose/ui/graphics/GraphicsLayerScope;)V
HSPLandroidx/compose/animation/EnterExitTransitionKt$createGraphicsLayerBlock$1$block$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/EnterExitTransitionKt$expandHorizontally$1;
HSPLandroidx/compose/animation/EnterExitTransitionKt$expandHorizontally$1;-><clinit>()V
HSPLandroidx/compose/animation/EnterExitTransitionKt$expandHorizontally$1;-><init>()V
Landroidx/compose/animation/EnterExitTransitionKt$expandHorizontally$2;
HSPLandroidx/compose/animation/EnterExitTransitionKt$expandHorizontally$2;-><init>(Lkotlin/jvm/functions/Function1;)V
Landroidx/compose/animation/EnterExitTransitionKt$shrinkHorizontally$1;
HSPLandroidx/compose/animation/EnterExitTransitionKt$shrinkHorizontally$1;-><clinit>()V
HSPLandroidx/compose/animation/EnterExitTransitionKt$shrinkHorizontally$1;-><init>()V
Landroidx/compose/animation/EnterExitTransitionKt$shrinkHorizontally$2;
HSPLandroidx/compose/animation/EnterExitTransitionKt$shrinkHorizontally$2;-><init>(Lkotlin/jvm/functions/Function1;)V
Landroidx/compose/animation/EnterExitTransitionModifierNode;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/core/Transition$DeferredAnimation;Landroidx/compose/animation/EnterTransition;Landroidx/compose/animation/ExitTransition;Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;)V
HPLandroidx/compose/animation/EnterExitTransitionModifierNode;->measure-3p2s80s(Landroidx/compose/ui/layout/MeasureScope;Landroidx/compose/ui/layout/Measurable;J)Landroidx/compose/ui/layout/MeasureResult;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->onAttach()V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode;->setLookaheadConstraints-BRTryo0(J)V
Landroidx/compose/animation/EnterExitTransitionModifierNode$measure$1;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$1;-><init>(Landroidx/compose/ui/layout/Placeable;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$1;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/EnterExitTransitionModifierNode$measure$2;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$2;-><init>(Landroidx/compose/ui/layout/Placeable;JJLkotlin/jvm/functions/Function1;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$2;->invoke(Landroidx/compose/ui/layout/Placeable$PlacementScope;)V
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$measure$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/EnterExitTransitionModifierNode$sizeTransitionSpec$1;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$sizeTransitionSpec$1;-><init>(Landroidx/compose/animation/EnterExitTransitionModifierNode;)V
Landroidx/compose/animation/EnterExitTransitionModifierNode$slideSpec$1;
HSPLandroidx/compose/animation/EnterExitTransitionModifierNode$slideSpec$1;-><init>(Landroidx/compose/animation/EnterExitTransitionModifierNode;)V
Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterTransition;-><clinit>()V
HSPLandroidx/compose/animation/EnterTransition;-><init>()V
HSPLandroidx/compose/animation/EnterTransition;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/EnterTransition;->access$getNone$cp()Landroidx/compose/animation/EnterTransition;
HSPLandroidx/compose/animation/EnterTransition;->equals(Ljava/lang/Object;)Z
HSPLandroidx/compose/animation/EnterTransition;->plus(Landroidx/compose/animation/EnterTransition;)Landroidx/compose/animation/EnterTransition;
Landroidx/compose/animation/EnterTransition$Companion;
HSPLandroidx/compose/animation/EnterTransition$Companion;-><init>()V
HSPLandroidx/compose/animation/EnterTransition$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/EnterTransition$Companion;->getNone()Landroidx/compose/animation/EnterTransition;
Landroidx/compose/animation/EnterTransitionImpl;
HSPLandroidx/compose/animation/EnterTransitionImpl;-><init>(Landroidx/compose/animation/TransitionData;)V
HSPLandroidx/compose/animation/EnterTransitionImpl;->getData$animation_release()Landroidx/compose/animation/TransitionData;
Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/ExitTransition;-><clinit>()V
HSPLandroidx/compose/animation/ExitTransition;-><init>()V
HSPLandroidx/compose/animation/ExitTransition;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/ExitTransition;->access$getNone$cp()Landroidx/compose/animation/ExitTransition;
HSPLandroidx/compose/animation/ExitTransition;->equals(Ljava/lang/Object;)Z
HSPLandroidx/compose/animation/ExitTransition;->plus(Landroidx/compose/animation/ExitTransition;)Landroidx/compose/animation/ExitTransition;
Landroidx/compose/animation/ExitTransition$Companion;
HSPLandroidx/compose/animation/ExitTransition$Companion;-><init>()V
HSPLandroidx/compose/animation/ExitTransition$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/ExitTransition$Companion;->getNone()Landroidx/compose/animation/ExitTransition;
Landroidx/compose/animation/ExitTransitionImpl;
HSPLandroidx/compose/animation/ExitTransitionImpl;-><init>(Landroidx/compose/animation/TransitionData;)V
HSPLandroidx/compose/animation/ExitTransitionImpl;->getData$animation_release()Landroidx/compose/animation/TransitionData;
Landroidx/compose/animation/Fade;
HSPLandroidx/compose/animation/Fade;-><clinit>()V
HPLandroidx/compose/animation/Fade;-><init>(FLandroidx/compose/animation/core/FiniteAnimationSpec;)V
Landroidx/compose/animation/FlingCalculator;
HSPLandroidx/compose/animation/FlingCalculator;-><clinit>()V
HSPLandroidx/compose/animation/FlingCalculator;-><init>(FLandroidx/compose/ui/unit/Density;)V
HSPLandroidx/compose/animation/FlingCalculator;->computeDeceleration(Landroidx/compose/ui/unit/Density;)F
Landroidx/compose/animation/FlingCalculatorKt;
HSPLandroidx/compose/animation/FlingCalculatorKt;-><clinit>()V
HSPLandroidx/compose/animation/FlingCalculatorKt;->access$computeDeceleration(FF)F
HSPLandroidx/compose/animation/FlingCalculatorKt;->computeDeceleration(FF)F
Landroidx/compose/animation/GraphicsLayerBlockForEnterExit;
Landroidx/compose/animation/LayoutModifierNodeWithPassThroughIntrinsics;
HSPLandroidx/compose/animation/LayoutModifierNodeWithPassThroughIntrinsics;-><clinit>()V
HSPLandroidx/compose/animation/LayoutModifierNodeWithPassThroughIntrinsics;-><init>()V
Landroidx/compose/animation/OnLookaheadMeasured;
Landroidx/compose/animation/SingleValueAnimationKt;
HSPLandroidx/compose/animation/SingleValueAnimationKt;-><clinit>()V
HSPLandroidx/compose/animation/SingleValueAnimationKt;->animateColorAsState-euL9pac(JLandroidx/compose/animation/core/AnimationSpec;Ljava/lang/String;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)Landroidx/compose/runtime/State;
Landroidx/compose/animation/SizeTransform;
Landroidx/compose/animation/SizeTransformImpl;
HSPLandroidx/compose/animation/SizeTransformImpl;-><init>(ZLkotlin/jvm/functions/Function2;)V
Landroidx/compose/animation/SplineBasedDecayKt;
HSPLandroidx/compose/animation/SplineBasedDecayKt;->splineBasedDecay(Landroidx/compose/ui/unit/Density;)Landroidx/compose/animation/core/DecayAnimationSpec;
Landroidx/compose/animation/SplineBasedFloatDecayAnimationSpec;
HSPLandroidx/compose/animation/SplineBasedFloatDecayAnimationSpec;-><clinit>()V
HSPLandroidx/compose/animation/SplineBasedFloatDecayAnimationSpec;-><init>(Landroidx/compose/ui/unit/Density;)V
Landroidx/compose/animation/SplineBasedFloatDecayAnimationSpec_androidKt;
HSPLandroidx/compose/animation/SplineBasedFloatDecayAnimationSpec_androidKt;-><clinit>()V
HSPLandroidx/compose/animation/SplineBasedFloatDecayAnimationSpec_androidKt;->getPlatformFlingScrollFriction()F
HPLandroidx/compose/animation/SplineBasedFloatDecayAnimationSpec_androidKt;->rememberSplineBasedDecay(Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/core/DecayAnimationSpec;
Landroidx/compose/animation/TransitionData;
HSPLandroidx/compose/animation/TransitionData;-><clinit>()V
HPLandroidx/compose/animation/TransitionData;-><init>(Landroidx/compose/animation/Fade;Landroidx/compose/animation/Slide;Landroidx/compose/animation/ChangeSize;Landroidx/compose/animation/Scale;ZLjava/util/Map;)V
HSPLandroidx/compose/animation/TransitionData;-><init>(Landroidx/compose/animation/Fade;Landroidx/compose/animation/Slide;Landroidx/compose/animation/ChangeSize;Landroidx/compose/animation/Scale;ZLjava/util/Map;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/TransitionData;->equals(Ljava/lang/Object;)Z
HSPLandroidx/compose/animation/TransitionData;->getChangeSize()Landroidx/compose/animation/ChangeSize;
HSPLandroidx/compose/animation/TransitionData;->getEffectsMap()Ljava/util/Map;
HSPLandroidx/compose/animation/TransitionData;->getFade()Landroidx/compose/animation/Fade;
HSPLandroidx/compose/animation/TransitionData;->getHold()Z
HSPLandroidx/compose/animation/TransitionData;->getScale()Landroidx/compose/animation/Scale;
HSPLandroidx/compose/animation/TransitionData;->getSlide()Landroidx/compose/animation/Slide;
Landroidx/compose/animation/core/Animatable;
HSPLandroidx/compose/animation/core/Animatable;-><clinit>()V
HPLandroidx/compose/animation/core/Animatable;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;Ljava/lang/String;)V
HSPLandroidx/compose/animation/core/Animatable;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/core/Animatable;->asState()Landroidx/compose/runtime/State;
HSPLandroidx/compose/animation/core/Animatable;->getTargetValue()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/Animatable;->getValue()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/Animatable;->getVelocityVector()Landroidx/compose/animation/core/AnimationVector;
Landroidx/compose/animation/core/AnimatableKt;
HSPLandroidx/compose/animation/core/AnimatableKt;-><clinit>()V
HSPLandroidx/compose/animation/core/AnimatableKt;->Animatable$default(FFILjava/lang/Object;)Landroidx/compose/animation/core/Animatable;
HPLandroidx/compose/animation/core/AnimatableKt;->Animatable(FF)Landroidx/compose/animation/core/Animatable;
HSPLandroidx/compose/animation/core/AnimatableKt;->access$getNegativeInfinityBounds1D$p()Landroidx/compose/animation/core/AnimationVector1D;
HSPLandroidx/compose/animation/core/AnimatableKt;->access$getNegativeInfinityBounds4D$p()Landroidx/compose/animation/core/AnimationVector4D;
HSPLandroidx/compose/animation/core/AnimatableKt;->access$getPositiveInfinityBounds1D$p()Landroidx/compose/animation/core/AnimationVector1D;
HSPLandroidx/compose/animation/core/AnimatableKt;->access$getPositiveInfinityBounds4D$p()Landroidx/compose/animation/core/AnimationVector4D;
Landroidx/compose/animation/core/AnimateAsStateKt;
HSPLandroidx/compose/animation/core/AnimateAsStateKt;-><clinit>()V
HPLandroidx/compose/animation/core/AnimateAsStateKt;->animateValueAsState(Ljava/lang/Object;Landroidx/compose/animation/core/TwoWayConverter;Landroidx/compose/animation/core/AnimationSpec;Ljava/lang/Object;Ljava/lang/String;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)Landroidx/compose/runtime/State;
Landroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$2;
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$2;-><init>(Lkotlinx/coroutines/channels/Channel;Ljava/lang/Object;)V
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$2;->invoke()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$2;->invoke()V
Landroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3;
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3;-><init>(Lkotlinx/coroutines/channels/Channel;Landroidx/compose/animation/core/Animatable;Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;Lkotlin/coroutines/Continuation;)V
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
HPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3$1;
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3$1;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/Animatable;Landroidx/compose/runtime/State;Landroidx/compose/runtime/State;Lkotlin/coroutines/Continuation;)V
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3$1;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
HSPLandroidx/compose/animation/core/AnimateAsStateKt$animateValueAsState$3$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/core/Animation;
Landroidx/compose/animation/core/Animation$-CC;
HSPLandroidx/compose/animation/core/Animation$-CC;->$default$isFinishedFromNanos(Landroidx/compose/animation/core/Animation;J)Z
Landroidx/compose/animation/core/AnimationSpec;
Landroidx/compose/animation/core/AnimationSpecKt;
HSPLandroidx/compose/animation/core/AnimationSpecKt;->access$convert(Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;)Landroidx/compose/animation/core/AnimationVector;
HSPLandroidx/compose/animation/core/AnimationSpecKt;->convert(Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;)Landroidx/compose/animation/core/AnimationVector;
HSPLandroidx/compose/animation/core/AnimationSpecKt;->infiniteRepeatable-9IiC70o$default(Landroidx/compose/animation/core/DurationBasedAnimationSpec;Landroidx/compose/animation/core/RepeatMode;JILjava/lang/Object;)Landroidx/compose/animation/core/InfiniteRepeatableSpec;
HSPLandroidx/compose/animation/core/AnimationSpecKt;->infiniteRepeatable-9IiC70o(Landroidx/compose/animation/core/DurationBasedAnimationSpec;Landroidx/compose/animation/core/RepeatMode;J)Landroidx/compose/animation/core/InfiniteRepeatableSpec;
HSPLandroidx/compose/animation/core/AnimationSpecKt;->keyframes(Lkotlin/jvm/functions/Function1;)Landroidx/compose/animation/core/KeyframesSpec;
HSPLandroidx/compose/animation/core/AnimationSpecKt;->spring$default(FFLjava/lang/Object;ILjava/lang/Object;)Landroidx/compose/animation/core/SpringSpec;
HSPLandroidx/compose/animation/core/AnimationSpecKt;->spring(FFLjava/lang/Object;)Landroidx/compose/animation/core/SpringSpec;
HSPLandroidx/compose/animation/core/AnimationSpecKt;->tween$default(IILandroidx/compose/animation/core/Easing;ILjava/lang/Object;)Landroidx/compose/animation/core/TweenSpec;
HSPLandroidx/compose/animation/core/AnimationSpecKt;->tween(IILandroidx/compose/animation/core/Easing;)Landroidx/compose/animation/core/TweenSpec;
Landroidx/compose/animation/core/AnimationState;
HSPLandroidx/compose/animation/core/AnimationState;-><clinit>()V
HPLandroidx/compose/animation/core/AnimationState;-><init>(Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;Landroidx/compose/animation/core/AnimationVector;JJZ)V
HSPLandroidx/compose/animation/core/AnimationState;-><init>(Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;Landroidx/compose/animation/core/AnimationVector;JJZILkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/compose/animation/core/AnimationState;->getValue()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/AnimationState;->getVelocityVector()Landroidx/compose/animation/core/AnimationVector;
Landroidx/compose/animation/core/AnimationStateKt;
HSPLandroidx/compose/animation/core/AnimationStateKt;->AnimationState$default(Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;Ljava/lang/Object;JJZILjava/lang/Object;)Landroidx/compose/animation/core/AnimationState;
HSPLandroidx/compose/animation/core/AnimationStateKt;->AnimationState(Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;Ljava/lang/Object;JJZ)Landroidx/compose/animation/core/AnimationState;
HPLandroidx/compose/animation/core/AnimationStateKt;->createZeroVectorFrom(Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;)Landroidx/compose/animation/core/AnimationVector;
Landroidx/compose/animation/core/AnimationVector;
HSPLandroidx/compose/animation/core/AnimationVector;-><clinit>()V
HSPLandroidx/compose/animation/core/AnimationVector;-><init>()V
HSPLandroidx/compose/animation/core/AnimationVector;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
Landroidx/compose/animation/core/AnimationVector1D;
HSPLandroidx/compose/animation/core/AnimationVector1D;-><clinit>()V
HPLandroidx/compose/animation/core/AnimationVector1D;-><init>(F)V
HSPLandroidx/compose/animation/core/AnimationVector1D;->get$animation_core_release(I)F
HSPLandroidx/compose/animation/core/AnimationVector1D;->getSize$animation_core_release()I
HSPLandroidx/compose/animation/core/AnimationVector1D;->getValue()F
HSPLandroidx/compose/animation/core/AnimationVector1D;->newVector$animation_core_release()Landroidx/compose/animation/core/AnimationVector1D;
HSPLandroidx/compose/animation/core/AnimationVector1D;->newVector$animation_core_release()Landroidx/compose/animation/core/AnimationVector;
HSPLandroidx/compose/animation/core/AnimationVector1D;->reset$animation_core_release()V
HSPLandroidx/compose/animation/core/AnimationVector1D;->set$animation_core_release(IF)V
Landroidx/compose/animation/core/AnimationVector2D;
HSPLandroidx/compose/animation/core/AnimationVector2D;-><clinit>()V
HSPLandroidx/compose/animation/core/AnimationVector2D;-><init>(FF)V
Landroidx/compose/animation/core/AnimationVector3D;
HSPLandroidx/compose/animation/core/AnimationVector3D;-><clinit>()V
HSPLandroidx/compose/animation/core/AnimationVector3D;-><init>(FFF)V
Landroidx/compose/animation/core/AnimationVector4D;
HSPLandroidx/compose/animation/core/AnimationVector4D;-><clinit>()V
HSPLandroidx/compose/animation/core/AnimationVector4D;-><init>(FFFF)V
HSPLandroidx/compose/animation/core/AnimationVector4D;->reset$animation_core_release()V
Landroidx/compose/animation/core/AnimationVectorsKt;
HSPLandroidx/compose/animation/core/AnimationVectorsKt;->AnimationVector(F)Landroidx/compose/animation/core/AnimationVector1D;
HSPLandroidx/compose/animation/core/AnimationVectorsKt;->AnimationVector(FF)Landroidx/compose/animation/core/AnimationVector2D;
HSPLandroidx/compose/animation/core/AnimationVectorsKt;->AnimationVector(FFF)Landroidx/compose/animation/core/AnimationVector3D;
HSPLandroidx/compose/animation/core/AnimationVectorsKt;->AnimationVector(FFFF)Landroidx/compose/animation/core/AnimationVector4D;
HSPLandroidx/compose/animation/core/AnimationVectorsKt;->copy(Landroidx/compose/animation/core/AnimationVector;)Landroidx/compose/animation/core/AnimationVector;
HPLandroidx/compose/animation/core/AnimationVectorsKt;->newInstance(Landroidx/compose/animation/core/AnimationVector;)Landroidx/compose/animation/core/AnimationVector;
Landroidx/compose/animation/core/Animations;
Landroidx/compose/animation/core/ComplexDouble$$ExternalSyntheticBackport0;
HPLandroidx/compose/animation/core/ComplexDouble$$ExternalSyntheticBackport0;->m(Ljava/util/concurrent/atomic/AtomicReference;Ljava/lang/Object;Ljava/lang/Object;)Z
Landroidx/compose/animation/core/CubicBezierEasing;
HSPLandroidx/compose/animation/core/CubicBezierEasing;-><clinit>()V
HSPLandroidx/compose/animation/core/CubicBezierEasing;-><init>(FFFF)V
HSPLandroidx/compose/animation/core/CubicBezierEasing;->evaluateCubic(FFF)F
HPLandroidx/compose/animation/core/CubicBezierEasing;->transform(F)F
Landroidx/compose/animation/core/DecayAnimationSpec;
Landroidx/compose/animation/core/DecayAnimationSpecImpl;
HSPLandroidx/compose/animation/core/DecayAnimationSpecImpl;-><init>(Landroidx/compose/animation/core/FloatDecayAnimationSpec;)V
Landroidx/compose/animation/core/DecayAnimationSpecKt;
HSPLandroidx/compose/animation/core/DecayAnimationSpecKt;->generateDecayAnimationSpec(Landroidx/compose/animation/core/FloatDecayAnimationSpec;)Landroidx/compose/animation/core/DecayAnimationSpec;
Landroidx/compose/animation/core/DurationBasedAnimationSpec;
Landroidx/compose/animation/core/Easing;
Landroidx/compose/animation/core/EasingKt;
HSPLandroidx/compose/animation/core/EasingKt;->$r8$lambda$7O2TQpsfx-61Y7k3YdwvDNA9V_g(F)F
HSPLandroidx/compose/animation/core/EasingKt;-><clinit>()V
HSPLandroidx/compose/animation/core/EasingKt;->LinearEasing$lambda$0(F)F
HSPLandroidx/compose/animation/core/EasingKt;->getFastOutLinearInEasing()Landroidx/compose/animation/core/Easing;
HSPLandroidx/compose/animation/core/EasingKt;->getFastOutSlowInEasing()Landroidx/compose/animation/core/Easing;
HSPLandroidx/compose/animation/core/EasingKt;->getLinearEasing()Landroidx/compose/animation/core/Easing;
Landroidx/compose/animation/core/EasingKt$$ExternalSyntheticLambda0;
HSPLandroidx/compose/animation/core/EasingKt$$ExternalSyntheticLambda0;-><init>()V
HSPLandroidx/compose/animation/core/EasingKt$$ExternalSyntheticLambda0;->transform(F)F
Landroidx/compose/animation/core/FiniteAnimationSpec;
Landroidx/compose/animation/core/FloatAnimationSpec;
Landroidx/compose/animation/core/FloatDecayAnimationSpec;
Landroidx/compose/animation/core/FloatSpringSpec;
HSPLandroidx/compose/animation/core/FloatSpringSpec;-><clinit>()V
HSPLandroidx/compose/animation/core/FloatSpringSpec;-><init>(FFF)V
HSPLandroidx/compose/animation/core/FloatSpringSpec;-><init>(FFFILkotlin/jvm/internal/DefaultConstructorMarker;)V
Landroidx/compose/animation/core/FloatTweenSpec;
HSPLandroidx/compose/animation/core/FloatTweenSpec;-><clinit>()V
HSPLandroidx/compose/animation/core/FloatTweenSpec;-><init>(IILandroidx/compose/animation/core/Easing;)V
HSPLandroidx/compose/animation/core/FloatTweenSpec;->clampPlayTime(J)J
HPLandroidx/compose/animation/core/FloatTweenSpec;->getValueFromNanos(JFFF)F
HSPLandroidx/compose/animation/core/FloatTweenSpec;->getVelocityFromNanos(JFFF)F
Landroidx/compose/animation/core/InfiniteAnimationPolicyKt;
HSPLandroidx/compose/animation/core/InfiniteAnimationPolicyKt;->withInfiniteAnimationFrameNanos(Lkotlin/jvm/functions/Function1;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
Landroidx/compose/animation/core/InfiniteRepeatableSpec;
HSPLandroidx/compose/animation/core/InfiniteRepeatableSpec;-><clinit>()V
HSPLandroidx/compose/animation/core/InfiniteRepeatableSpec;-><init>(Landroidx/compose/animation/core/DurationBasedAnimationSpec;Landroidx/compose/animation/core/RepeatMode;J)V
HSPLandroidx/compose/animation/core/InfiniteRepeatableSpec;-><init>(Landroidx/compose/animation/core/DurationBasedAnimationSpec;Landroidx/compose/animation/core/RepeatMode;JLkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/compose/animation/core/InfiniteRepeatableSpec;->vectorize(Landroidx/compose/animation/core/TwoWayConverter;)Landroidx/compose/animation/core/VectorizedAnimationSpec;
Landroidx/compose/animation/core/InfiniteTransition;
HSPLandroidx/compose/animation/core/InfiniteTransition;-><clinit>()V
HSPLandroidx/compose/animation/core/InfiniteTransition;-><init>(Ljava/lang/String;)V
HSPLandroidx/compose/animation/core/InfiniteTransition;->access$getStartTimeNanos$p(Landroidx/compose/animation/core/InfiniteTransition;)J
HSPLandroidx/compose/animation/core/InfiniteTransition;->access$get_animations$p(Landroidx/compose/animation/core/InfiniteTransition;)Landroidx/compose/runtime/collection/MutableVector;
HSPLandroidx/compose/animation/core/InfiniteTransition;->access$onFrame(Landroidx/compose/animation/core/InfiniteTransition;J)V
HSPLandroidx/compose/animation/core/InfiniteTransition;->access$setRefreshChildNeeded(Landroidx/compose/animation/core/InfiniteTransition;Z)V
HSPLandroidx/compose/animation/core/InfiniteTransition;->access$setStartTimeNanos$p(Landroidx/compose/animation/core/InfiniteTransition;J)V
HSPLandroidx/compose/animation/core/InfiniteTransition;->addAnimation$animation_core_release(Landroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;)V
HSPLandroidx/compose/animation/core/InfiniteTransition;->isRunning()Z
HPLandroidx/compose/animation/core/InfiniteTransition;->onFrame(J)V
HSPLandroidx/compose/animation/core/InfiniteTransition;->removeAnimation$animation_core_release(Landroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;)V
HPLandroidx/compose/animation/core/InfiniteTransition;->run$animation_core_release(Landroidx/compose/runtime/Composer;I)V
HSPLandroidx/compose/animation/core/InfiniteTransition;->setRefreshChildNeeded(Z)V
HSPLandroidx/compose/animation/core/InfiniteTransition;->setRunning(Z)V
Landroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;
HPLandroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;-><init>(Landroidx/compose/animation/core/InfiniteTransition;Ljava/lang/Object;Ljava/lang/Object;Landroidx/compose/animation/core/TwoWayConverter;Landroidx/compose/animation/core/AnimationSpec;Ljava/lang/String;)V
HSPLandroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;->getInitialValue$animation_core_release()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;->getTargetValue$animation_core_release()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;->getValue()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;->isFinished$animation_core_release()Z
HPLandroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;->onPlayTimeChanged$animation_core_release(J)V
HSPLandroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;->reset$animation_core_release()V
HSPLandroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;->setValue$animation_core_release(Ljava/lang/Object;)V
Landroidx/compose/animation/core/InfiniteTransition$run$1;
HSPLandroidx/compose/animation/core/InfiniteTransition$run$1;-><init>(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/core/InfiniteTransition;Lkotlin/coroutines/Continuation;)V
HSPLandroidx/compose/animation/core/InfiniteTransition$run$1;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
HPLandroidx/compose/animation/core/InfiniteTransition$run$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/core/InfiniteTransition$run$1$1;
HSPLandroidx/compose/animation/core/InfiniteTransition$run$1$1;-><init>(Landroidx/compose/runtime/MutableState;Landroidx/compose/animation/core/InfiniteTransition;Lkotlin/jvm/internal/Ref$FloatRef;Lkotlinx/coroutines/CoroutineScope;)V
HPLandroidx/compose/animation/core/InfiniteTransition$run$1$1;->invoke(J)V
HSPLandroidx/compose/animation/core/InfiniteTransition$run$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/core/InfiniteTransition$run$2;
HSPLandroidx/compose/animation/core/InfiniteTransition$run$2;-><init>(Landroidx/compose/animation/core/InfiniteTransition;I)V
Landroidx/compose/animation/core/InfiniteTransitionKt;
HPLandroidx/compose/animation/core/InfiniteTransitionKt;->animateFloat(Landroidx/compose/animation/core/InfiniteTransition;FFLandroidx/compose/animation/core/InfiniteRepeatableSpec;Ljava/lang/String;Landroidx/compose/runtime/Composer;II)Landroidx/compose/runtime/State;
HPLandroidx/compose/animation/core/InfiniteTransitionKt;->animateValue(Landroidx/compose/animation/core/InfiniteTransition;Ljava/lang/Object;Ljava/lang/Object;Landroidx/compose/animation/core/TwoWayConverter;Landroidx/compose/animation/core/InfiniteRepeatableSpec;Ljava/lang/String;Landroidx/compose/runtime/Composer;II)Landroidx/compose/runtime/State;
HSPLandroidx/compose/animation/core/InfiniteTransitionKt;->rememberInfiniteTransition(Ljava/lang/String;Landroidx/compose/runtime/Composer;II)Landroidx/compose/animation/core/InfiniteTransition;
Landroidx/compose/animation/core/InfiniteTransitionKt$animateValue$1;
HSPLandroidx/compose/animation/core/InfiniteTransitionKt$animateValue$1;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;Ljava/lang/Object;Landroidx/compose/animation/core/InfiniteRepeatableSpec;)V
HSPLandroidx/compose/animation/core/InfiniteTransitionKt$animateValue$1;->invoke()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/InfiniteTransitionKt$animateValue$1;->invoke()V
Landroidx/compose/animation/core/InfiniteTransitionKt$animateValue$2;
HSPLandroidx/compose/animation/core/InfiniteTransitionKt$animateValue$2;-><init>(Landroidx/compose/animation/core/InfiniteTransition;Landroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;)V
HSPLandroidx/compose/animation/core/InfiniteTransitionKt$animateValue$2;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
HSPLandroidx/compose/animation/core/InfiniteTransitionKt$animateValue$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/core/InfiniteTransitionKt$animateValue$2$invoke$$inlined$onDispose$1;
HSPLandroidx/compose/animation/core/InfiniteTransitionKt$animateValue$2$invoke$$inlined$onDispose$1;-><init>(Landroidx/compose/animation/core/InfiniteTransition;Landroidx/compose/animation/core/InfiniteTransition$TransitionAnimationState;)V
HSPLandroidx/compose/animation/core/InfiniteTransitionKt$animateValue$2$invoke$$inlined$onDispose$1;->dispose()V
Landroidx/compose/animation/core/KeyframeBaseEntity;
HSPLandroidx/compose/animation/core/KeyframeBaseEntity;-><clinit>()V
HSPLandroidx/compose/animation/core/KeyframeBaseEntity;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/Easing;)V
HSPLandroidx/compose/animation/core/KeyframeBaseEntity;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/Easing;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/core/KeyframeBaseEntity;->setEasing$animation_core_release(Landroidx/compose/animation/core/Easing;)V
HSPLandroidx/compose/animation/core/KeyframeBaseEntity;->toPair$animation_core_release(Lkotlin/jvm/functions/Function1;)Lkotlin/Pair;
Landroidx/compose/animation/core/KeyframesSpec;
HSPLandroidx/compose/animation/core/KeyframesSpec;-><clinit>()V
HSPLandroidx/compose/animation/core/KeyframesSpec;-><init>(Landroidx/compose/animation/core/KeyframesSpec$KeyframesSpecConfig;)V
HSPLandroidx/compose/animation/core/KeyframesSpec;->vectorize(Landroidx/compose/animation/core/TwoWayConverter;)Landroidx/compose/animation/core/VectorizedDurationBasedAnimationSpec;
HPLandroidx/compose/animation/core/KeyframesSpec;->vectorize(Landroidx/compose/animation/core/TwoWayConverter;)Landroidx/compose/animation/core/VectorizedKeyframesSpec;
Landroidx/compose/animation/core/KeyframesSpec$KeyframeEntity;
HSPLandroidx/compose/animation/core/KeyframesSpec$KeyframeEntity;-><clinit>()V
HSPLandroidx/compose/animation/core/KeyframesSpec$KeyframeEntity;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/Easing;)V
HSPLandroidx/compose/animation/core/KeyframesSpec$KeyframeEntity;-><init>(Ljava/lang/Object;Landroidx/compose/animation/core/Easing;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
Landroidx/compose/animation/core/KeyframesSpec$KeyframesSpecConfig;
HSPLandroidx/compose/animation/core/KeyframesSpec$KeyframesSpecConfig;-><clinit>()V
HSPLandroidx/compose/animation/core/KeyframesSpec$KeyframesSpecConfig;-><init>()V
HSPLandroidx/compose/animation/core/KeyframesSpec$KeyframesSpecConfig;->createEntityFor$animation_core_release(Ljava/lang/Object;)Landroidx/compose/animation/core/KeyframeBaseEntity;
HSPLandroidx/compose/animation/core/KeyframesSpec$KeyframesSpecConfig;->createEntityFor$animation_core_release(Ljava/lang/Object;)Landroidx/compose/animation/core/KeyframesSpec$KeyframeEntity;
Landroidx/compose/animation/core/KeyframesSpecBaseConfig;
HSPLandroidx/compose/animation/core/KeyframesSpecBaseConfig;-><clinit>()V
HSPLandroidx/compose/animation/core/KeyframesSpecBaseConfig;-><init>()V
HSPLandroidx/compose/animation/core/KeyframesSpecBaseConfig;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/core/KeyframesSpecBaseConfig;->at(Ljava/lang/Object;I)Landroidx/compose/animation/core/KeyframeBaseEntity;
HSPLandroidx/compose/animation/core/KeyframesSpecBaseConfig;->getDelayMillis()I
HSPLandroidx/compose/animation/core/KeyframesSpecBaseConfig;->getDurationMillis()I
HSPLandroidx/compose/animation/core/KeyframesSpecBaseConfig;->getKeyframes$animation_core_release()Landroidx/collection/MutableIntObjectMap;
HSPLandroidx/compose/animation/core/KeyframesSpecBaseConfig;->setDurationMillis(I)V
HSPLandroidx/compose/animation/core/KeyframesSpecBaseConfig;->using(Landroidx/compose/animation/core/KeyframeBaseEntity;Landroidx/compose/animation/core/Easing;)Landroidx/compose/animation/core/KeyframeBaseEntity;
Landroidx/compose/animation/core/MutableTransitionState;
HSPLandroidx/compose/animation/core/MutableTransitionState;-><clinit>()V
HSPLandroidx/compose/animation/core/MutableTransitionState;-><init>(Ljava/lang/Object;)V
HPLandroidx/compose/animation/core/MutableTransitionState;->getCurrentState()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/MutableTransitionState;->setCurrentState$animation_core_release(Ljava/lang/Object;)V
HSPLandroidx/compose/animation/core/MutableTransitionState;->transitionConfigured$animation_core_release(Landroidx/compose/animation/core/Transition;)V
Landroidx/compose/animation/core/MutatorMutex;
HSPLandroidx/compose/animation/core/MutatorMutex;-><clinit>()V
HPLandroidx/compose/animation/core/MutatorMutex;-><init>()V
Landroidx/compose/animation/core/RepeatMode;
HSPLandroidx/compose/animation/core/RepeatMode;->$values()[Landroidx/compose/animation/core/RepeatMode;
HSPLandroidx/compose/animation/core/RepeatMode;-><clinit>()V
HSPLandroidx/compose/animation/core/RepeatMode;-><init>(Ljava/lang/String;I)V
Landroidx/compose/animation/core/SpringSimulation;
HSPLandroidx/compose/animation/core/SpringSimulation;-><clinit>()V
HSPLandroidx/compose/animation/core/SpringSimulation;-><init>(F)V
HSPLandroidx/compose/animation/core/SpringSimulation;->getStiffness()F
HSPLandroidx/compose/animation/core/SpringSimulation;->setDampingRatio(F)V
HSPLandroidx/compose/animation/core/SpringSimulation;->setStiffness(F)V
Landroidx/compose/animation/core/SpringSpec;
HSPLandroidx/compose/animation/core/SpringSpec;-><clinit>()V
HPLandroidx/compose/animation/core/SpringSpec;-><init>(FFLjava/lang/Object;)V
HSPLandroidx/compose/animation/core/SpringSpec;-><init>(FFLjava/lang/Object;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/core/SpringSpec;->equals(Ljava/lang/Object;)Z
HSPLandroidx/compose/animation/core/SpringSpec;->vectorize(Landroidx/compose/animation/core/TwoWayConverter;)Landroidx/compose/animation/core/VectorizedAnimationSpec;
HSPLandroidx/compose/animation/core/SpringSpec;->vectorize(Landroidx/compose/animation/core/TwoWayConverter;)Landroidx/compose/animation/core/VectorizedSpringSpec;
Landroidx/compose/animation/core/StartOffset;
HSPLandroidx/compose/animation/core/StartOffset;->constructor-impl$default(IIILkotlin/jvm/internal/DefaultConstructorMarker;)J
HSPLandroidx/compose/animation/core/StartOffset;->constructor-impl(II)J
HSPLandroidx/compose/animation/core/StartOffset;->constructor-impl(J)J
Landroidx/compose/animation/core/StartOffsetType;
HSPLandroidx/compose/animation/core/StartOffsetType;-><clinit>()V
HSPLandroidx/compose/animation/core/StartOffsetType;->access$getDelay$cp()I
HSPLandroidx/compose/animation/core/StartOffsetType;->constructor-impl(I)I
Landroidx/compose/animation/core/StartOffsetType$Companion;
HSPLandroidx/compose/animation/core/StartOffsetType$Companion;-><init>()V
HSPLandroidx/compose/animation/core/StartOffsetType$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/core/StartOffsetType$Companion;->getDelay-Eo1U57Q()I
Landroidx/compose/animation/core/SuspendAnimationKt;
HSPLandroidx/compose/animation/core/SuspendAnimationKt;->getDurationScale(Lkotlin/coroutines/CoroutineContext;)F
Landroidx/compose/animation/core/TargetBasedAnimation;
HSPLandroidx/compose/animation/core/TargetBasedAnimation;-><clinit>()V
HSPLandroidx/compose/animation/core/TargetBasedAnimation;-><init>(Landroidx/compose/animation/core/AnimationSpec;Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;Ljava/lang/Object;Landroidx/compose/animation/core/AnimationVector;)V
HSPLandroidx/compose/animation/core/TargetBasedAnimation;-><init>(Landroidx/compose/animation/core/AnimationSpec;Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;Ljava/lang/Object;Landroidx/compose/animation/core/AnimationVector;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
HPLandroidx/compose/animation/core/TargetBasedAnimation;-><init>(Landroidx/compose/animation/core/VectorizedAnimationSpec;Landroidx/compose/animation/core/TwoWayConverter;Ljava/lang/Object;Ljava/lang/Object;Landroidx/compose/animation/core/AnimationVector;)V
HSPLandroidx/compose/animation/core/TargetBasedAnimation;->getDurationNanos()J
HSPLandroidx/compose/animation/core/TargetBasedAnimation;->getTargetValue()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/TargetBasedAnimation;->getTypeConverter()Landroidx/compose/animation/core/TwoWayConverter;
HPLandroidx/compose/animation/core/TargetBasedAnimation;->getValueFromNanos(J)Ljava/lang/Object;
HSPLandroidx/compose/animation/core/TargetBasedAnimation;->isFinishedFromNanos(J)Z
Landroidx/compose/animation/core/Transition;
HSPLandroidx/compose/animation/core/Transition;-><clinit>()V
HSPLandroidx/compose/animation/core/Transition;-><init>(Landroidx/compose/animation/core/MutableTransitionState;Ljava/lang/String;)V
HPLandroidx/compose/animation/core/Transition;-><init>(Landroidx/compose/animation/core/TransitionState;Ljava/lang/String;)V
HSPLandroidx/compose/animation/core/Transition;-><init>(Ljava/lang/Object;Ljava/lang/String;)V
HSPLandroidx/compose/animation/core/Transition;->addTransition$animation_core_release(Landroidx/compose/animation/core/Transition;)Z
HPLandroidx/compose/animation/core/Transition;->animateTo$animation_core_release(Ljava/lang/Object;Landroidx/compose/runtime/Composer;I)V
HPLandroidx/compose/animation/core/Transition;->getCurrentState()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/Transition;->getLabel()Ljava/lang/String;
HPLandroidx/compose/animation/core/Transition;->getSegment()Landroidx/compose/animation/core/Transition$Segment;
HSPLandroidx/compose/animation/core/Transition;->getStartTimeNanos()J
HPLandroidx/compose/animation/core/Transition;->getTargetState()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/Transition;->getUpdateChildrenNeeded$animation_core_release()Z
HSPLandroidx/compose/animation/core/Transition;->isRunning()Z
HPLandroidx/compose/animation/core/Transition;->isSeeking()Z
HPLandroidx/compose/animation/core/Transition;->onFrame$animation_core_release(JF)V
HPLandroidx/compose/animation/core/Transition;->onTransitionEnd$animation_core_release()V
HSPLandroidx/compose/animation/core/Transition;->onTransitionStart$animation_core_release(J)V
PLandroidx/compose/animation/core/Transition;->removeTransition$animation_core_release(Landroidx/compose/animation/core/Transition;)Z
HSPLandroidx/compose/animation/core/Transition;->setPlayTimeNanos(J)V
HSPLandroidx/compose/animation/core/Transition;->setSeeking$animation_core_release(Z)V
HSPLandroidx/compose/animation/core/Transition;->setStartTimeNanos(J)V
HSPLandroidx/compose/animation/core/Transition;->setUpdateChildrenNeeded$animation_core_release(Z)V
HPLandroidx/compose/animation/core/Transition;->updateTarget$animation_core_release(Ljava/lang/Object;Landroidx/compose/runtime/Composer;I)V
Landroidx/compose/animation/core/Transition$Segment;
Landroidx/compose/animation/core/Transition$SegmentImpl;
HSPLandroidx/compose/animation/core/Transition$SegmentImpl;-><init>(Ljava/lang/Object;Ljava/lang/Object;)V
HSPLandroidx/compose/animation/core/Transition$SegmentImpl;->getInitialState()Ljava/lang/Object;
HSPLandroidx/compose/animation/core/Transition$SegmentImpl;->getTargetState()Ljava/lang/Object;
Landroidx/compose/animation/core/Transition$animateTo$1$1;
HSPLandroidx/compose/animation/core/Transition$animateTo$1$1;-><init>(Landroidx/compose/animation/core/Transition;Lkotlin/coroutines/Continuation;)V
HSPLandroidx/compose/animation/core/Transition$animateTo$1$1;->create(Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Lkotlin/coroutines/Continuation;
HPLandroidx/compose/animation/core/Transition$animateTo$1$1;->invokeSuspend(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/core/Transition$animateTo$1$1$1;
HSPLandroidx/compose/animation/core/Transition$animateTo$1$1$1;-><init>(Landroidx/compose/animation/core/Transition;F)V
HSPLandroidx/compose/animation/core/Transition$animateTo$1$1$1;->invoke(J)V
HSPLandroidx/compose/animation/core/Transition$animateTo$1$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/core/Transition$animateTo$2;
HSPLandroidx/compose/animation/core/Transition$animateTo$2;-><init>(Landroidx/compose/animation/core/Transition;Ljava/lang/Object;I)V
HSPLandroidx/compose/animation/core/Transition$animateTo$2;->invoke(Landroidx/compose/runtime/Composer;I)V
HSPLandroidx/compose/animation/core/Transition$animateTo$2;->invoke(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/core/Transition$totalDurationNanos$2;
HSPLandroidx/compose/animation/core/Transition$totalDurationNanos$2;-><init>(Landroidx/compose/animation/core/Transition;)V
Landroidx/compose/animation/core/Transition$updateTarget$3;
HSPLandroidx/compose/animation/core/Transition$updateTarget$3;-><init>(Landroidx/compose/animation/core/Transition;Ljava/lang/Object;I)V
Landroidx/compose/animation/core/TransitionKt;
HPLandroidx/compose/animation/core/TransitionKt;->createChildTransitionInternal(Landroidx/compose/animation/core/Transition;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/String;Landroidx/compose/runtime/Composer;I)Landroidx/compose/animation/core/Transition;
HPLandroidx/compose/animation/core/TransitionKt;->updateTransition(Ljava/lang/Object;Ljava/lang/String;Landroidx/compose/runtime/Composer;II)Landroidx/compose/animation/core/Transition;
Landroidx/compose/animation/core/TransitionKt$createChildTransitionInternal$1$1;
HSPLandroidx/compose/animation/core/TransitionKt$createChildTransitionInternal$1$1;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/core/Transition;)V
HSPLandroidx/compose/animation/core/TransitionKt$createChildTransitionInternal$1$1;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
HSPLandroidx/compose/animation/core/TransitionKt$createChildTransitionInternal$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/core/TransitionKt$createChildTransitionInternal$1$1$invoke$$inlined$onDispose$1;
HSPLandroidx/compose/animation/core/TransitionKt$createChildTransitionInternal$1$1$invoke$$inlined$onDispose$1;-><init>(Landroidx/compose/animation/core/Transition;Landroidx/compose/animation/core/Transition;)V
PLandroidx/compose/animation/core/TransitionKt$createChildTransitionInternal$1$1$invoke$$inlined$onDispose$1;->dispose()V
Landroidx/compose/animation/core/TransitionKt$updateTransition$1$1;
HSPLandroidx/compose/animation/core/TransitionKt$updateTransition$1$1;-><init>(Landroidx/compose/animation/core/Transition;)V
HSPLandroidx/compose/animation/core/TransitionKt$updateTransition$1$1;->invoke(Landroidx/compose/runtime/DisposableEffectScope;)Landroidx/compose/runtime/DisposableEffectResult;
HSPLandroidx/compose/animation/core/TransitionKt$updateTransition$1$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/compose/animation/core/TransitionKt$updateTransition$1$1$invoke$$inlined$onDispose$1;
HSPLandroidx/compose/animation/core/TransitionKt$updateTransition$1$1$invoke$$inlined$onDispose$1;-><init>(Landroidx/compose/animation/core/Transition;)V
PLandroidx/compose/animation/core/TransitionKt$updateTransition$1$1$invoke$$inlined$onDispose$1;->dispose()V
Landroidx/compose/animation/core/TransitionState;
HSPLandroidx/compose/animation/core/TransitionState;-><clinit>()V
HSPLandroidx/compose/animation/core/TransitionState;-><init>()V
HSPLandroidx/compose/animation/core/TransitionState;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/core/TransitionState;->setRunning$animation_core_release(Z)V
Landroidx/compose/animation/core/TweenSpec;
HSPLandroidx/compose/animation/core/TweenSpec;-><clinit>()V
HPLandroidx/compose/animation/core/TweenSpec;-><init>(IILandroidx/compose/animation/core/Easing;)V
HSPLandroidx/compose/animation/core/TweenSpec;-><init>(IILandroidx/compose/animation/core/Easing;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
HSPLandroidx/compose/animation/core/TweenSpec;->vectorize(Landroidx/compose/animation/core/TwoWayConverter;)Landroidx/compose/animation/core/VectorizedDurationBasedAnimationSpec;
HSPLandroidx/compose/animation/core/TweenSpec;->vectorize(Landroidx/compose/animation/core/TwoWayConverter;)Landroidx/compose/animation/core/VectorizedTweenSpec;
Landroidx/compose/animation/core/TwoWayConverter;
Landroidx/compose/animation/core/TwoWayConverterImpl;
HSPLandroidx/compose/animation/core/TwoWayConverterImpl;-><init>(Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;)V
HSPLandroidx/compose/animation/core/TwoWayConverterImpl;->getConvertFromVector()Lkotlin/jvm/functions/Function1;
HSPLandroidx/compose/animation/core/TwoWayConverterImpl;->getConvertToVector()Lkotlin/jvm/functions/Function1;
Landroidx/compose/animation/core/VectorConvertersKt;
HSPLandroidx/compose/animation/core/VectorConvertersKt;-><clinit>()V
HSPLandroidx/compose/animation/core/VectorConvertersKt;->TwoWayConverter(Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function1;)Landroidx/compose/animation/core/TwoWayConverter;
HSPLandroidx/compose/animation/core/VectorConverter
Download .txt
gitextract_864mlkx4/

├── .editorconfig
├── .github/
│   ├── CODEOWNERS
│   ├── FUNDING.yml
│   ├── dependabot.yml
│   ├── pull_request_template.md
│   └── workflows/
│       ├── android.yml
│       └── baseline-profile.yml
├── .gitignore
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── app/
│   ├── .gitignore
│   ├── build.gradle.kts
│   ├── proguard-rules.pro
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── kotlin/
│       │   │   └── com/
│       │   │       └── skydoves/
│       │   │           └── gemini/
│       │   │               ├── GeminiApp.kt
│       │   │               ├── MainActivity.kt
│       │   │               ├── di/
│       │   │               │   ├── ChatEntryPoint.kt
│       │   │               │   └── ChatModule.kt
│       │   │               ├── initializer/
│       │   │               │   ├── StreamChatInitializer.kt
│       │   │               │   └── StreamLogInitializer.kt
│       │   │               ├── navigation/
│       │   │               │   ├── GeminiNavHost.kt
│       │   │               │   └── GeminiNavigation.kt
│       │   │               └── ui/
│       │   │                   └── GeminiMain.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   ├── ic_launcher_background.xml
│       │       │   └── ic_launcher_foreground.xml
│       │       ├── layout/
│       │       │   └── activity_main.xml
│       │       ├── mipmap-anydpi-v26/
│       │       │   ├── ic_launcher.xml
│       │       │   └── ic_launcher_round.xml
│       │       ├── values/
│       │       │   ├── colors.xml
│       │       │   ├── strings.xml
│       │       │   └── themes.xml
│       │       ├── values-night/
│       │       │   └── themes.xml
│       │       └── xml/
│       │           ├── backup_rules.xml
│       │           └── data_extraction_rules.xml
│       └── release/
│           └── generated/
│               └── baselineProfiles/
│                   ├── baseline-prof.txt
│                   └── startup-prof.txt
├── baseline-profile/
│   ├── .gitignore
│   ├── build.gradle.kts
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           └── java/
│               └── com/
│                   └── skydoves/
│                       └── gemini/
│                           └── baselineprofile/
│                               └── BaselineProfileGenerator.kt
├── build-logic/
│   ├── convention/
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           └── kotlin/
│   │               ├── AndroidApplicationComposeConventionPlugin.kt
│   │               ├── AndroidApplicationConventionPlugin.kt
│   │               ├── AndroidFeatureConventionPlugin.kt
│   │               ├── AndroidHiltConventionPlugin.kt
│   │               ├── AndroidLibraryComposeConventionPlugin.kt
│   │               ├── AndroidLibraryConventionPlugin.kt
│   │               ├── SpotlessConventionPlugin.kt
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           ├── AndroidCompose.kt
│   │                           └── KotlinAndroid.kt
│   ├── gradle/
│   │   └── wrapper/
│   │       ├── gradle-wrapper.jar
│   │       └── gradle-wrapper.properties
│   ├── gradle.properties
│   └── settings.gradle.kts
├── build.gradle.kts
├── buildSrc/
│   ├── build.gradle.kts
│   └── src/
│       └── main/
│           └── kotlin/
│               └── Configurations.kt
├── core/
│   ├── data/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── core/
│   │                               └── data/
│   │                                   ├── chat/
│   │                                   │   └── ChatModels.kt
│   │                                   ├── coroutines/
│   │                                   │   ├── Flow.kt
│   │                                   │   └── WhileSubscribedOrRetained.kt
│   │                                   ├── di/
│   │                                   │   └── DataModule.kt
│   │                                   ├── repository/
│   │                                   │   ├── ChannelRepository.kt
│   │                                   │   ├── ChannelRepositoryImpl.kt
│   │                                   │   ├── ChatRepository.kt
│   │                                   │   └── ChatRepositoryImpl.kt
│   │                                   └── utils/
│   │                                       └── Strings.kt
│   ├── database/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   ├── schemas/
│   │   │   └── com.skydoves.gemini.core.database.GeminiDatabase/
│   │   │       └── 1.json
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── core/
│   │                               └── database/
│   │                                   ├── GeminiChannelEntity.kt
│   │                                   ├── GeminiDao.kt
│   │                                   ├── GeminiDatabase.kt
│   │                                   ├── GeminiModelConverter.kt
│   │                                   └── di/
│   │                                       └── DatabaseModule.kt
│   ├── datastore/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── core/
│   │                               └── datastore/
│   │                                   ├── DataStore.kt
│   │                                   ├── PreferenceDataStore.kt
│   │                                   └── di/
│   │                                       └── DataStoreModule.kt
│   ├── designsystem/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           ├── kotlin/
│   │           │   └── com/
│   │           │       └── skydoves/
│   │           │           └── gemini/
│   │           │               └── core/
│   │           │                   └── designsystem/
│   │           │                       ├── chat/
│   │           │                       │   └── GeminiReactionFactory.kt
│   │           │                       ├── component/
│   │           │                       │   ├── Background.kt
│   │           │                       │   ├── GeminiSmallTopBar.kt
│   │           │                       │   └── LoadingIndicator.kt
│   │           │                       ├── composition/
│   │           │                       │   └── LocalOnFinishDispatcher.kt
│   │           │                       └── theme/
│   │           │                           ├── Background.kt
│   │           │                           ├── Color.kt
│   │           │                           └── Theme.kt
│   │           └── res/
│   │               └── values/
│   │                   └── strings.xml
│   ├── model/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── core/
│   │                               └── model/
│   │                                   ├── GeminiChannel.kt
│   │                                   └── GeminiModel.kt
│   ├── navigation/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── core/
│   │                               └── navigation/
│   │                                   ├── GeminiComposeNavigator.kt
│   │                                   ├── GeminiScreens.kt
│   │                                   ├── NavigationCommand.kt
│   │                                   ├── Navigator.kt
│   │                                   └── di/
│   │                                       └── NavigationModule.kt
│   └── network/
│       ├── .gitignore
│       ├── build.gradle.kts
│       └── src/
│           └── main/
│               ├── AndroidManifest.xml
│               └── kotlin/
│                   └── com/
│                       └── skydoves/
│                           └── gemini/
│                               └── core/
│                                   └── network/
│                                       ├── Dispatchers.kt
│                                       ├── di/
│                                       │   ├── DispatchersModule.kt
│                                       │   └── NetworkModule.kt
│                                       └── service/
│                                           └── ChannelService.kt
├── feature/
│   ├── channels/
│   │   ├── .gitignore
│   │   ├── build.gradle.kts
│   │   └── src/
│   │       └── main/
│   │           ├── AndroidManifest.xml
│   │           └── kotlin/
│   │               └── com/
│   │                   └── skydoves/
│   │                       └── gemini/
│   │                           └── feature/
│   │                               └── channels/
│   │                                   ├── ChannelViewModel.kt
│   │                                   ├── GeminiChannels.kt
│   │                                   └── RememberFloatingBalloon.kt
│   └── chat/
│       ├── .gitignore
│       ├── build.gradle.kts
│       └── src/
│           └── main/
│               ├── AndroidManifest.xml
│               └── kotlin/
│                   └── com/
│                       └── skydoves/
│                           └── gemini/
│                               └── feature/
│                                   └── chat/
│                                       ├── ChatViewModel.kt
│                                       ├── GeminiChat.kt
│                                       └── extension/
│                                           └── GeminiExtension.kt
├── gradle/
│   ├── libs.versions.toml
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── secrets.defaults.properties
├── settings.gradle.kts
└── spotless/
    ├── copyright.kt
    ├── copyright.kts
    ├── copyright.xml
    └── spotless.gradle
Condensed preview — 142 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (7,224K chars).
[
  {
    "path": ".editorconfig",
    "chars": 97,
    "preview": "root = true\n[*]\n# Most of the standard properties are supported\nindent_size=2\nmax_line_length=100"
  },
  {
    "path": ".github/CODEOWNERS",
    "chars": 704,
    "preview": "# Lines starting with '#' are comments.\n# Each line is a file pattern followed by one or more owners.\n\n# More details ar"
  },
  {
    "path": ".github/FUNDING.yml",
    "chars": 101,
    "preview": "github: skydoves\ncustom: [\"https://www.paypal.me/skydoves\", \"https://www.buymeacoffee.com/skydoves\"]\n"
  },
  {
    "path": ".github/dependabot.yml",
    "chars": 598,
    "preview": "# To get started with Dependabot version updates, you'll need to specify which\n# package ecosystems to update and where "
  },
  {
    "path": ".github/pull_request_template.md",
    "chars": 561,
    "preview": "### 🎯 Goal\nDescribe the big picture of your changes here to communicate to the maintainers why we should accept this pul"
  },
  {
    "path": ".github/workflows/android.yml",
    "chars": 887,
    "preview": "name: Android CI\n\non:\n  push:\n    branches: [ main ]\n  pull_request:\n    branches: [ main ]\n\njobs:\n  lint:\n    name: Spo"
  },
  {
    "path": ".github/workflows/baseline-profile.yml",
    "chars": 2635,
    "preview": "# Workflow name\nname: baseline-profiles\n\n# Workflow title\nrun-name: ${{ github.actor }} requested a workflow\n\n# This sho"
  },
  {
    "path": ".gitignore",
    "chars": 723,
    "preview": "# Built application files\n*.apk\n*.ap_\n\n# Files for the ART/Dalvik VM\n*.dex\n\n# Java class files\n*.class\n\n# Generated file"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "chars": 5221,
    "preview": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nWe as members, contributors, and leaders pledge to make participa"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 679,
    "preview": "## How to contribute\nWe'd love to accept your patches and contributions to this project. There are just a few small guid"
  },
  {
    "path": "LICENSE",
    "chars": 11357,
    "preview": "                                 Apache License\n                           Version 2.0, January 2004\n                   "
  },
  {
    "path": "README.md",
    "chars": 13168,
    "preview": "\n![Gemini Cover](https://github.com/skydoves/gemini-android/assets/24237865/bf8e6cc9-3729-49f8-8f50-b45d6649668f)\n\n<p al"
  },
  {
    "path": "app/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "app/build.gradle.kts",
    "chars": 3846,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "app/proguard-rules.pro",
    "chars": 750,
    "preview": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguar"
  },
  {
    "path": "app/src/main/AndroidManifest.xml",
    "chars": 1993,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/main/kotlin/com/skydoves/gemini/GeminiApp.kt",
    "chars": 1011,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "app/src/main/kotlin/com/skydoves/gemini/MainActivity.kt",
    "chars": 1502,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "app/src/main/kotlin/com/skydoves/gemini/di/ChatEntryPoint.kt",
    "chars": 1396,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "app/src/main/kotlin/com/skydoves/gemini/di/ChatModule.kt",
    "chars": 1015,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "app/src/main/kotlin/com/skydoves/gemini/initializer/StreamChatInitializer.kt",
    "chars": 3486,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "app/src/main/kotlin/com/skydoves/gemini/initializer/StreamLogInitializer.kt",
    "chars": 1225,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "app/src/main/kotlin/com/skydoves/gemini/navigation/GeminiNavHost.kt",
    "chars": 1215,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "app/src/main/kotlin/com/skydoves/gemini/navigation/GeminiNavigation.kt",
    "chars": 2043,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "app/src/main/kotlin/com/skydoves/gemini/ui/GeminiMain.kt",
    "chars": 1437,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "app/src/main/res/drawable/ic_launcher_background.xml",
    "chars": 6246,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/main/res/drawable/ic_launcher_foreground.xml",
    "chars": 2381,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/main/res/layout/activity_main.xml",
    "chars": 1418,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml",
    "chars": 983,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml",
    "chars": 983,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/main/res/values/colors.xml",
    "chars": 787,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/main/res/values/strings.xml",
    "chars": 755,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/main/res/values/themes.xml",
    "chars": 1074,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/main/res/values-night/themes.xml",
    "chars": 998,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/main/res/xml/backup_rules.xml",
    "chars": 831,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/main/res/xml/data_extraction_rules.xml",
    "chars": 1009,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "app/src/release/generated/baselineProfiles/baseline-prof.txt",
    "chars": 3454422,
    "preview": "Landroidx/activity/Cancellable;\nLandroidx/activity/ComponentActivity;\nHPLandroidx/activity/ComponentActivity;-><init>()V"
  },
  {
    "path": "app/src/release/generated/baselineProfiles/startup-prof.txt",
    "chars": 3454422,
    "preview": "Landroidx/activity/Cancellable;\nLandroidx/activity/ComponentActivity;\nHPLandroidx/activity/ComponentActivity;-><init>()V"
  },
  {
    "path": "baseline-profile/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "baseline-profile/build.gradle.kts",
    "chars": 2124,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "baseline-profile/src/main/AndroidManifest.xml",
    "chars": 691,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "baseline-profile/src/main/java/com/skydoves/gemini/baselineprofile/BaselineProfileGenerator.kt",
    "chars": 1492,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "build-logic/convention/build.gradle.kts",
    "chars": 1560,
    "preview": "plugins {\n    `kotlin-dsl`\n}\n\ngroup = \"com.skydoves.gemini.buildlogic\"\n\njava {\n    sourceCompatibility = JavaVersion.VER"
  },
  {
    "path": "build-logic/convention/src/main/kotlin/AndroidApplicationComposeConventionPlugin.kt",
    "chars": 520,
    "preview": "import com.android.build.gradle.internal.dsl.BaseAppModuleExtension\nimport com.skydoves.gemini.configureAndroidCompose\ni"
  },
  {
    "path": "build-logic/convention/src/main/kotlin/AndroidApplicationConventionPlugin.kt",
    "chars": 571,
    "preview": "import com.android.build.gradle.internal.dsl.BaseAppModuleExtension\nimport com.skydoves.gemini.configureKotlinAndroid\nim"
  },
  {
    "path": "build-logic/convention/src/main/kotlin/AndroidFeatureConventionPlugin.kt",
    "chars": 882,
    "preview": "import org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.api.artifacts.VersionCatalogsExtension\nimpo"
  },
  {
    "path": "build-logic/convention/src/main/kotlin/AndroidHiltConventionPlugin.kt",
    "chars": 731,
    "preview": "import org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport org.gradle.api.artifacts.VersionCatalogsExtension\nimpo"
  },
  {
    "path": "build-logic/convention/src/main/kotlin/AndroidLibraryComposeConventionPlugin.kt",
    "chars": 487,
    "preview": "import com.android.build.gradle.LibraryExtension\nimport com.skydoves.gemini.configureAndroidCompose\nimport org.gradle.ap"
  },
  {
    "path": "build-logic/convention/src/main/kotlin/AndroidLibraryConventionPlugin.kt",
    "chars": 538,
    "preview": "import com.android.build.gradle.LibraryExtension\nimport com.skydoves.gemini.configureKotlinAndroid\nimport org.gradle.api"
  },
  {
    "path": "build-logic/convention/src/main/kotlin/SpotlessConventionPlugin.kt",
    "chars": 1356,
    "preview": "import com.diffplug.gradle.spotless.SpotlessExtension\nimport org.gradle.api.Plugin\nimport org.gradle.api.Project\nimport "
  },
  {
    "path": "build-logic/convention/src/main/kotlin/com/skydoves/gemini/AndroidCompose.kt",
    "chars": 855,
    "preview": "package com.skydoves.gemini\n\nimport com.android.build.api.dsl.CommonExtension\nimport java.io.File\nimport org.gradle.api."
  },
  {
    "path": "build-logic/convention/src/main/kotlin/com/skydoves/gemini/KotlinAndroid.kt",
    "chars": 1686,
    "preview": "package com.skydoves.gemini\n\nimport com.android.build.api.dsl.CommonExtension\nimport org.gradle.api.JavaVersion\nimport o"
  },
  {
    "path": "build-logic/gradle/wrapper/gradle-wrapper.properties",
    "chars": 202,
    "preview": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributi"
  },
  {
    "path": "build-logic/gradle.properties",
    "chars": 182,
    "preview": "# Gradle properties are not passed to included builds https://github.com/gradle/gradle/issues/2534\norg.gradle.parallel=t"
  },
  {
    "path": "build-logic/settings.gradle.kts",
    "chars": 295,
    "preview": "enableFeaturePreview(\"TYPESAFE_PROJECT_ACCESSORS\")\n\ndependencyResolutionManagement {\n    repositories {\n        google()"
  },
  {
    "path": "build.gradle.kts",
    "chars": 682,
    "preview": "buildscript {\n  repositories {\n    google()\n    maven(\"https://plugins.gradle.org/m2/\")\n  }\n}\n\nplugins {\n  alias(libs.pl"
  },
  {
    "path": "buildSrc/build.gradle.kts",
    "chars": 62,
    "preview": "repositories {\n  mavenCentral()\n}\n\nplugins {\n  `kotlin-dsl`\n}\n"
  },
  {
    "path": "buildSrc/src/main/kotlin/Configurations.kt",
    "chars": 290,
    "preview": "object Configurations {\n  const val compileSdk = 34\n  const val targetSdk = 34\n  const val minSdk = 21\n  const val major"
  },
  {
    "path": "core/data/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "core/data/build.gradle.kts",
    "chars": 1004,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/data/src/main/AndroidManifest.xml",
    "chars": 761,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "core/data/src/main/kotlin/com/skydoves/gemini/core/data/chat/ChatModels.kt",
    "chars": 1517,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/data/src/main/kotlin/com/skydoves/gemini/core/data/coroutines/Flow.kt",
    "chars": 1820,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/data/src/main/kotlin/com/skydoves/gemini/core/data/coroutines/WhileSubscribedOrRetained.kt",
    "chars": 2215,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/data/src/main/kotlin/com/skydoves/gemini/core/data/di/DataModule.kt",
    "chars": 1338,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/data/src/main/kotlin/com/skydoves/gemini/core/data/repository/ChannelRepository.kt",
    "chars": 1420,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/data/src/main/kotlin/com/skydoves/gemini/core/data/repository/ChannelRepositoryImpl.kt",
    "chars": 4123,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/data/src/main/kotlin/com/skydoves/gemini/core/data/repository/ChatRepository.kt",
    "chars": 1524,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/data/src/main/kotlin/com/skydoves/gemini/core/data/repository/ChatRepositoryImpl.kt",
    "chars": 2652,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/data/src/main/kotlin/com/skydoves/gemini/core/data/utils/Strings.kt",
    "chars": 712,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/database/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "core/database/build.gradle.kts",
    "chars": 1154,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/database/schemas/com.skydoves.gemini.core.database.GeminiDatabase/1.json",
    "chars": 1444,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 1,\n    \"identityHash\": \"5b86e558b3a264372c0591c8510de7c7\",\n    \"e"
  },
  {
    "path": "core/database/src/main/AndroidManifest.xml",
    "chars": 761,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "core/database/src/main/kotlin/com/skydoves/gemini/core/database/GeminiChannelEntity.kt",
    "chars": 1260,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/database/src/main/kotlin/com/skydoves/gemini/core/database/GeminiDao.kt",
    "chars": 1064,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/database/src/main/kotlin/com/skydoves/gemini/core/database/GeminiDatabase.kt",
    "chars": 1002,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/database/src/main/kotlin/com/skydoves/gemini/core/database/GeminiModelConverter.kt",
    "chars": 1367,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/database/src/main/kotlin/com/skydoves/gemini/core/database/di/DatabaseModule.kt",
    "chars": 1848,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/datastore/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "core/datastore/build.gradle.kts",
    "chars": 843,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/datastore/src/main/AndroidManifest.xml",
    "chars": 702,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "core/datastore/src/main/kotlin/com/skydoves/gemini/core/datastore/DataStore.kt",
    "chars": 950,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/datastore/src/main/kotlin/com/skydoves/gemini/core/datastore/PreferenceDataStore.kt",
    "chars": 2143,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/datastore/src/main/kotlin/com/skydoves/gemini/core/datastore/di/DataStoreModule.kt",
    "chars": 1278,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/designsystem/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "core/designsystem/build.gradle.kts",
    "chars": 1382,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/designsystem/src/main/AndroidManifest.xml",
    "chars": 761,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "core/designsystem/src/main/kotlin/com/skydoves/gemini/core/designsystem/chat/GeminiReactionFactory.kt",
    "chars": 2326,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/designsystem/src/main/kotlin/com/skydoves/gemini/core/designsystem/component/Background.kt",
    "chars": 1969,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/designsystem/src/main/kotlin/com/skydoves/gemini/core/designsystem/component/GeminiSmallTopBar.kt",
    "chars": 1693,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/designsystem/src/main/kotlin/com/skydoves/gemini/core/designsystem/component/LoadingIndicator.kt",
    "chars": 1128,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/designsystem/src/main/kotlin/com/skydoves/gemini/core/designsystem/composition/LocalOnFinishDispatcher.kt",
    "chars": 804,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/designsystem/src/main/kotlin/com/skydoves/gemini/core/designsystem/theme/Background.kt",
    "chars": 1048,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/designsystem/src/main/kotlin/com/skydoves/gemini/core/designsystem/theme/Color.kt",
    "chars": 903,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/designsystem/src/main/kotlin/com/skydoves/gemini/core/designsystem/theme/Theme.kt",
    "chars": 2120,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/designsystem/src/main/res/values/strings.xml",
    "chars": 1023,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "core/model/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "core/model/build.gradle.kts",
    "chars": 894,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/model/src/main/AndroidManifest.xml",
    "chars": 761,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "core/model/src/main/kotlin/com/skydoves/gemini/core/model/GeminiChannel.kt",
    "chars": 930,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/model/src/main/kotlin/com/skydoves/gemini/core/model/GeminiModel.kt",
    "chars": 982,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/navigation/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "core/navigation/build.gradle.kts",
    "chars": 975,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/navigation/src/main/AndroidManifest.xml",
    "chars": 761,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "core/navigation/src/main/kotlin/com/skydoves/gemini/core/navigation/GeminiComposeNavigator.kt",
    "chars": 1743,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/navigation/src/main/kotlin/com/skydoves/gemini/core/navigation/GeminiScreens.kt",
    "chars": 2171,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/navigation/src/main/kotlin/com/skydoves/gemini/core/navigation/NavigationCommand.kt",
    "chars": 1206,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/navigation/src/main/kotlin/com/skydoves/gemini/core/navigation/Navigator.kt",
    "chars": 3116,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/navigation/src/main/kotlin/com/skydoves/gemini/core/navigation/di/NavigationModule.kt",
    "chars": 1177,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/network/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "core/network/build.gradle.kts",
    "chars": 1006,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/network/src/main/AndroidManifest.xml",
    "chars": 761,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "core/network/src/main/kotlin/com/skydoves/gemini/core/network/Dispatchers.kt",
    "chars": 886,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/network/src/main/kotlin/com/skydoves/gemini/core/network/di/DispatchersModule.kt",
    "chars": 1181,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/network/src/main/kotlin/com/skydoves/gemini/core/network/di/NetworkModule.kt",
    "chars": 2366,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "core/network/src/main/kotlin/com/skydoves/gemini/core/network/service/ChannelService.kt",
    "chars": 912,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "feature/channels/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "feature/channels/build.gradle.kts",
    "chars": 1152,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "feature/channels/src/main/AndroidManifest.xml",
    "chars": 761,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "feature/channels/src/main/kotlin/com/skydoves/gemini/feature/channels/ChannelViewModel.kt",
    "chars": 3355,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "feature/channels/src/main/kotlin/com/skydoves/gemini/feature/channels/GeminiChannels.kt",
    "chars": 5497,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "feature/channels/src/main/kotlin/com/skydoves/gemini/feature/channels/RememberFloatingBalloon.kt",
    "chars": 1643,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "feature/chat/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "feature/chat/build.gradle.kts",
    "chars": 1315,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "feature/chat/src/main/AndroidManifest.xml",
    "chars": 761,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "feature/chat/src/main/kotlin/com/skydoves/gemini/feature/chat/ChatViewModel.kt",
    "chars": 6896,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "feature/chat/src/main/kotlin/com/skydoves/gemini/feature/chat/GeminiChat.kt",
    "chars": 20599,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "feature/chat/src/main/kotlin/com/skydoves/gemini/feature/chat/extension/GeminiExtension.kt",
    "chars": 1320,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "gradle/libs.versions.toml",
    "chars": 9456,
    "preview": "[versions]\nstreamChatSDK = \"6.4.3\"\nstreamLog = \"1.1.4\"\nballoon = \"1.6.7\"\nlandscapist = \"2.3.6\"\nandroidGradlePlugin = \"8."
  },
  {
    "path": "gradle/wrapper/gradle-wrapper.properties",
    "chars": 250,
    "preview": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributi"
  },
  {
    "path": "gradle.properties",
    "chars": 1590,
    "preview": "# Project-wide Gradle settings.\n# IDE (e.g. Android Studio) users:\n# Gradle settings configured through the IDE *will ov"
  },
  {
    "path": "gradlew",
    "chars": 8669,
    "preview": "#!/bin/sh\n\n#\n# Copyright © 2015-2021 the original authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"Lice"
  },
  {
    "path": "gradlew.bat",
    "chars": 2918,
    "preview": "@rem\r\n@rem Copyright 2015 the original author or authors.\r\n@rem\r\n@rem Licensed under the Apache License, Version 2.0 (th"
  },
  {
    "path": "secrets.defaults.properties",
    "chars": 51,
    "preview": "STREAM_API_KEY=aaaaaaaaaa\nGEMINI_API_KEY=aaaaaaaaaa"
  },
  {
    "path": "settings.gradle.kts",
    "chars": 822,
    "preview": "@file:Suppress(\"UnstableApiUsage\")\npluginManagement {\n    includeBuild(\"build-logic\")\n    repositories {\n        gradleP"
  },
  {
    "path": "spotless/copyright.kt",
    "chars": 620,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "spotless/copyright.kts",
    "chars": 618,
    "preview": "/*\n * Designed and developed by 2024 skydoves (Jaewoong Eum)\n *\n * Licensed under the Apache License, Version 2.0 (the \""
  },
  {
    "path": "spotless/copyright.xml",
    "chars": 679,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n     Designed and developed by 2024 skydoves (Jaewoong Eum)\n\n     Licensed u"
  },
  {
    "path": "spotless/spotless.gradle",
    "chars": 344,
    "preview": "apply plugin: \"com.diffplug.spotless\"\n\nspotless {\n  kotlin {\n    target \"**/*.kt\"\n    targetExclude \"**/build/**/*.kt\"\n "
  }
]

// ... and 2 more files (download for full content)

About this extraction

This page contains the full source code of the skydoves/gemini-android GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 142 files (6.8 MB), approximately 1.8M tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!