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

amar_1995

02/17/2020, 10:36 AM
I am trying to render html page using androidview but getting this error while importing the dependancy.
ERROR: Failed to resolve: androidx.ui:ui-android-view:0.1.0-dev04
d

Dico

02/17/2020, 11:30 AM
You probably need to add a separate maven repository for
dev
versions. Look up the dependency, there are multiple websites that will list the repositories that host it.
Copy code
repositories {
    maven("<https://repositoryUrl>")
}
f

Foso

02/17/2020, 11:38 AM
Afaik ui-android-view isn't uploaded
👍 1