I have an existing multiplatform mobile app and I ...
# multiplatform
j
I have an existing multiplatform mobile app and I want to start rewriting it using jetpack compose for Android. When I add all the dependencies to use compose as described in the jetpack setup documentation for Android I get errors when I build saying
couldnt find inline method ColumnKt;.Column
and all I have is just a column added. Can you not create an Android app in compose in a KMM app? I can create a new compose app and it works just fine
m
Make sure your setting the buildConfig and composeOptions
Copy code
android {
    buildFeatures {
        compose = true
    }

    composeOptions {
        kotlinCompilerExtensionVersion = "1.0.5"
    }
}
j
Yes I have that