[go: nahoru, domu]

Skip to content

Commit

Permalink
docs: Don't suggest to use version ranges (#47)
Browse files Browse the repository at this point in the history
Version ranges are problematic because they lead to unreproducible builds,
unless you also use dependency lock properly, which many projects don't.
Furthermore, this triggers a warning in the IDE (for a good reason, the one mentioned above).
  • Loading branch information
LouisCAD committed Mar 10, 2022
1 parent ca9b485 commit c7e4e3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ dependencies {
// It is recommended to also include the latest Maps SDK, Places SDK and RxJava so you
// have the latest features and bug fixes.
implementation 'com.google.android.gms:play-services-maps:+'
implementation 'com.google.android.libraries.places:places:+'
implementation 'io.reactivex.rxjava3:rxjava:+'
implementation 'com.google.android.gms:play-services-maps:<insert-latest-version>'
implementation 'com.google.android.libraries.places:places:<insert-latest-version>'
implementation 'io.reactivex.rxjava3:rxjava:<insert-latest-version>'
}
```

Expand Down

0 comments on commit c7e4e3d

Please sign in to comment.