You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/main/java/org/mozilla/fenix/FenixApplication.kt

9 lines
197 B
Kotlin

package org.mozilla.fenix
import android.app.Application
import org.mozilla.fenix.components.Components
class FenixApplication : Application() {
val components by lazy { Components(this) }
}