Skip to content

Commit a8b0eb3

Browse files
authored
Update README.md (#5)
1 parent f9cf92a commit a8b0eb3

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,19 @@ You just need to include the Loggerazzi plugin in your project, and the rule in
1717

1818
In order to universally include all your existing application tests, rule can be added to your tests base class.
1919

20-
To include the plugin, just include plugin into your application or library module build.gradle using the plugins DSL:
20+
To include the plugin, add it to the plugins block of your project's build.gradle:
2121

2222
```gradle
2323
plugins {
24-
id("com.telefonica.loggerazzi-plugin") version $loggerazzi_version
24+
...
25+
id("com.telefonica.loggerazzi-plugin") version $loggerazzi_version apply false
26+
}
27+
```
28+
Then, include it into your specific application or library build.gradle:
29+
```gradle
30+
plugins {
31+
...
32+
id "com.telefonica.loggerazzi-plugin"
2533
}
2634
```
2735

0 commit comments

Comments
 (0)