mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
11 lines
199 B
Kotlin
11 lines
199 B
Kotlin
|
package com.x8bit.bitwarden
|
||
|
|
||
|
import android.app.Application
|
||
|
import dagger.hilt.android.HiltAndroidApp
|
||
|
|
||
|
/**
|
||
|
* Custom application class.
|
||
|
*/
|
||
|
@HiltAndroidApp
|
||
|
class BitwardenApplication : Application()
|