https://kotlinlang.org logo
#compose
Title
# compose
t

tcracknell

02/19/2020, 9:22 PM
Hello! The Jetpack Compose dev05 drop has just been released as part of our new continuous release model and you can get it now on Google’s Maven Repository. Release notes are available at https://developer.android.com/jetpack/androidx/releases/compose and https://developer.android.com/jetpack/androidx/releases/ui. Please note that the majority of the documentation including codelabs, tutorials, and samples will only be updated for major releases. Feedback is always welcome; please log issues at https://issuetracker.google.com/issues/new?component=612128!
🎉 10
🤩 6
❤️ 4
👍 34
z

Zach Klippenstein (he/him) [MOD]

02/20/2020, 12:08 AM
I added a
kotlinPlugin
dependency as described in the release notes, but gradle is giving me an error that the function doesn’t exist. I have the
composeOptions
configuration as well. Do i need to use a particular version of gradle or the kotlin gradle plugin? I’m using gradle 6.2 and kotlin 1.3.61. The error is:
Copy code
Could not find method kotlinPlugin() for arguments [androidx.compose:compose-compiler:0.1.0-dev05] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
Everything seems to work without the
kotlinPlugin
dependency, is it really necessary?
l

Louis Pullen-Freilich [G]

02/20/2020, 2:17 AM
Oops, that shouldn't be there I think. The
composeOptions
block configures the correct compiler version, not sure why that part is there
👍 1
a

amar_1995

02/20/2020, 12:11 PM
Is documentation of compose ui updated for dev05 ?
l

Louis Pullen-Freilich [G]

02/20/2020, 12:18 PM
Yes, reference documentation should all be updated.
i

Ian Warwick

02/20/2020, 1:50 PM
awesome thanks!
2 Views