From f5a93ec6e74d5c08f11ee3aa72d0e86d9763bf0d Mon Sep 17 00:00:00 2001 From: kevinliLD <73505246+kevinliLD@users.noreply.github.com> Date: Mon, 3 Apr 2023 11:51:37 -0700 Subject: [PATCH] Update README.md Give additional instructions for those wishing to see Live Events when testing with the sample application --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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(); +```