https://kotlinlang.org logo
h

henrikhorbovyi

07/01/2020, 11:39 PM
Hello everyone! I'm trying to use
compose
on a android module. But the project can't find
buildFeatures
🤔
Copy code
A problem occurred evaluating project
> Could not find method buildFeatures() for arguments on extension 'android' of type com.android.build.gradle.LibraryExtension.
Or I don't need it in an
android module
and only in the
app module
?
a

andylamax

07/02/2020, 12:21 AM
you need it in app/build.gralde, also make sure you have android gradle plugin 4+
h

henrikhorbovyi

07/02/2020, 12:31 AM
Cool! Thank you @andylamax \o/
2 Views