android-maps-compose icon indicating copy to clipboard operation
android-maps-compose copied to clipboard

Update readme with install dependencies

Open andrade-felipe-dev opened this issue 1 year ago • 3 comments

Hello, i would like to suggest with update readme repository, in instalation change the value of

dependencies {
    implementation 'com.google.maps.android:maps-compose:4.3.0'

    // Optionally, you can include the Compose utils library for Clustering,
    // Street View metadata checks, etc.
    implementation 'com.google.maps.android:maps-compose-utils:4.3.0'

    // Optionally, you can include the widgets library for ScaleBar, etc.
    implementation 'com.google.maps.android:maps-compose-widgets:4.3.0'
}

From to

dependencies {
    implementation("com.google.maps.android:maps-compose:4.3.0")

    // Optionally, you can include the Compose utils library for Clustering,
    // Street View metadata checks, etc.
    implementation("com.google.maps.android:maps-compose-utils:4.3.0")

    // Optionally, you can include the widgets library for ScaleBar, etc.
    implementation("com.google.maps.android:maps-compose-widgets:4.3.0")
}

Because this could affect those who are starting to work with native.

andrade-felipe-dev avatar Dec 08 '23 20:12 andrade-felipe-dev