How to use Google Maps with Jetpack Compose?
# compose
t
How to use Google Maps with Jetpack Compose?
p
t
Thanks @pawegio.
@pawegio do you know what to do with this "Failed to resolve: com.android.volleyvolley1.1.1"? I add this dependency ->
Copy code
implementation 'com.google.android.libraries.maps:maps:3.1.0-beta'
And got this error while trying to sync the grandle.
p
Maybe you’re missing a specific repository declaration in top-level build gradle. I haven’t encountered it.
Copy code
subprojects {
  repositories {
     google()
     jcenter()
     mavenCentral()
  }
}
t
Thank you for you response, @pawegio. You are awesome. I had tried to add jcenter() to the repositories, but, unfortunately, it keeps repeating the same error.