SkillAgentSearch skills...

ComposeAppUsingPrereleaseComposeCompiler

Demonstrates using Compose with pre-releases of KotlinCompiler and ComposeCompiler

Install / Use

/learn @jimgoog/ComposeAppUsingPrereleaseComposeCompiler
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Using Compose Compiler to support different versions of Kotlin

For the purposes of testing, development, or just living on the edge... some people want to use versions of Kotlin that are not yet officially supported by the Compose Compiler. For this purpose, we publish some branches the Compose Compiler that follow various versions of the Kotlin Compiler.

It is worth noting that these builds of the Compose Compiler typically undergo less testing than the final builds published on Gmaven, so adopt at your own risk.

Compatibility table

To see a table of Kotlin versions and their matching Compose Compiler versions, check out the compatibility table on androidx.dev: https://androidx.dev/storage/compose-compiler/repository

Project Configuration

This repository contains an example Compose project using pre-release builds of both the Kotlin and the Compose Compiler, while pointing to stable versions of the Compose UI libraries.

Specifically, there are two things to point out:

  • settings.gradle:17 adds the maven repository:

       maven {
         url "https://androidx.dev/storage/compose-compiler/repository/"
       }
    
  • app/build.gradle:39 specifies the compose compiler version:

      composeOptions {
        kotlinCompilerExtensionVersion "1.5.5-dev-k2.0.0-Beta1-06b8ae672a4"
      }
    
View on GitHub
GitHub Stars49
CategoryDevelopment
Updated2mo ago
Forks2

Languages

Kotlin

Security Score

75/100

Audited on Jan 25, 2026

No findings