diff --git a/README.md b/README.md index 1bfabe0..012c9a2 100644 --- a/README.md +++ b/README.md @@ -19,3 +19,11 @@ This project uses [Gradle](https://gradle.org/). It requires that Java is alread 2. On the command line, run `./gradlew run` (or, on Windows, `gradlew run`). You should see the message `"Feature flag '' is for this context"`. + +Optional: If you wish to see analytic events generated by this sample application, change the SDK configuration to enable events. + +```java + LDConfig config = new LDConfig.Builder() + .events(Components.sendEvents()) + .build(); +```