2
4

Jetpack Compose で Strong skipping mode を有効化してみる (Compose Compiler 1.5.14)

Last updated at Posted at 2024-07-10

手元のプロジェクトでStrong skipping modeを試すために変更した設定内容をメモしておきます。

手元の環境

  • Android Studio Koala | 2024.1.1
  • Kotlin 1.9.24
  • Compose Compiler 1.5.14
  • Compose Bom androidx.compose:compose-bom:2024.06.00

app/build.gradle

android {
   kotlinOptions {
        freeCompilerArgs += [
                "-P",
                "plugin:androidx.compose.compiler.plugins.kotlin:experimentalStrongSkipping=true",
        ]
    }

   composeOptions {
        kotlinCompilerExtensionVersion '1.5.14'
    }    
}    
2
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
4