I'm trying to access my Context instance on my App...
# kodein
k
I'm trying to access my Context instance on my Application onCreate (which just implements KodeinAware). But I saw while debugging that my Context binding is first created inside the AppCompatActivityInjector#initializeInjectors of my first KodeinAppCompatActivity, and therefore is not available in my app onCreate. Any idea how I can have my context initialized for my application ? I use an ugly bind<Context>(APP_CONTEXT) for now…