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

Kazemihabib1996

05/28/2020, 3:38 PM
androidx.ui:ui-material-icons-extended
removed in dev12?
l

Louis Pullen-Freilich [G]

05/28/2020, 4:29 PM
Should still be there, what error are you getting?
k

Kazemihabib1996

05/28/2020, 4:58 PM
• Failed to resolve: ui-material-icons-extended-0.1.0-dev12 Affected Modules: <openFileC/Users/habib/AndroidStudioProjects/composeplaystore/app/build.gradle|app>
l

Louis Pullen-Freilich [G]

05/28/2020, 5:14 PM
What is your dependency?
implementation 'androidx.ui:ui-material-icons-extended:0.1.0-dev12'
Seems to work fine for me
k

Kazemihabib1996

05/28/2020, 5:16 PM
Just throws that error for the below dependency others are okay
implementation "androidx.ui:ui-material-icons-extended:$compose_version"
def compose_release_version = "dev12"
ext.compose_version = "0.1.0-$compose_release_version"
l

Louis Pullen-Freilich [G]

05/28/2020, 5:25 PM
And if you change dev12 to dev11 it works?
k

Kazemihabib1996

05/28/2020, 5:25 PM
Yep, I'm using dev11 for that right now.
l

Louis Pullen-Freilich [G]

05/28/2020, 6:02 PM
Hmm, did you try invalidating caches and restarting? Maybe cleaning your gradle? Can't reproduce this unfortunately. What is in your
repositories
block?
k

Kazemihabib1996

05/28/2020, 7:20 PM
So it's probably something wrong with my gradle cache or something. I've tried
invalidating caches and restarting
I'll try cleaning the gradle too. repositories { google() jcenter() }
2 Views