Anyone can suggest how to marry ORMLite with Dagger in Android app?
Assume I have following layers:
UI [Activity] --> Business [POJO] --> DAO [ORMLite]
Each layer in injected to 'superior layer' with Dagger.
ORMLite creates DAO.
Know that there are a few options to init DAO from ORMLite. Let's call these [using ORMLite naming from examples]: "1. normal, 2. no helper, 3. no base".
The most natural here seems approach "no helper".
But maybe someone tested all approaches and can list pros / cons of each?