Skip to content

Commit

Permalink
Use double quotes to allow variables in strings
Browse files Browse the repository at this point in the history
This is a minor fix to be able to easily copy-paste the example config, it uses double quotes to be able to interpolate the variables.
  • Loading branch information
fourlastor committed Aug 3, 2022
1 parent 9e8e515 commit e97f051
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/leakcanary-for-releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ LeakCanary provides an artifact dedicated to detecting leaks in release builds:
```groovy
dependencies {
// LeakCanary for releases
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-release:${leakCanaryVersion}'
releaseImplementation "com.squareup.leakcanary:leakcanary-android-release:${leakCanaryVersion}"
// Optional: detect retained objects. This helps but is not required.
releaseImplementation 'com.squareup.leakcanary:leakcanary-object-watcher-android:${leakCanaryVersion}'
releaseImplementation "com.squareup.leakcanary:leakcanary-object-watcher-android:${leakCanaryVersion}"
}
```

Expand Down

0 comments on commit e97f051

Please sign in to comment.