mirror of
https://github.com/bitwarden/android.git
synced 2026-04-30 21:08:38 -05:00
18 lines
489 B
Kotlin
18 lines
489 B
Kotlin
package com.x8bit.bitwarden
|
|
|
|
import android.app.Application
|
|
import com.x8bit.bitwarden.data.platform.manager.NetworkConfigManager
|
|
import dagger.hilt.android.HiltAndroidApp
|
|
import javax.inject.Inject
|
|
|
|
/**
|
|
* Custom application class.
|
|
*/
|
|
@HiltAndroidApp
|
|
class BitwardenApplication : Application() {
|
|
// Inject classes here that must be triggered on startup but are not otherwise consumed by
|
|
// other callers.
|
|
@Inject
|
|
lateinit var networkConfigManager: NetworkConfigManager
|
|
}
|