I tried this: ```object Scanner { @Inject ...
# android
b
I tried this:
Copy code
object Scanner {

    @Inject
    lateinit var application: SimpleBlindsApplication

    @Inject
    lateinit var bluetoothManager: BluetoothManager

    @Inject
    lateinit var bluetoothAdapter: BluetoothAdapter
but I get a compilation error:
Error:Dagger does not support injection into static fields
What is a good way to get dependencies injected into a singleton with Kotlin?