From 1d995077d0b620a6aae9c60a8b96443113752305 Mon Sep 17 00:00:00 2001 From: Markus Date: Tue, 11 Feb 2020 10:52:09 +0100 Subject: [PATCH] README.md: add recommendation to use subscriber index --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d911ac0..2a776233 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,6 @@ EventBus... * is proven in practice by apps with 1,000,000,000+ installs * has advanced features like delivery threads, subscriber priorities, etc. - EventBus in 3 steps ------------------- 1. Define events: @@ -60,6 +59,9 @@ Read the full [getting started guide](https://greenrobot.org/eventbus/documentat There are also some [examples](https://github.com/greenrobot-team/greenrobot-examples). +**Note:** we highly recommend the [EventBus annotation processor with its subscriber index](https://greenrobot.org/eventbus/documentation/subscriber-index/). +This will avoid some reflection related problems seen in the wild. + Add EventBus to your project ----------------------------