SmashKs/OneShoot

View on GitHub
presentation/src/main/java/smash/ks/com/oneshoot/App.kt

Summary

Maintainability
A
0 mins
Test Coverage
/*
 * Copyright (C) 2018 The Smash Ks Open Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package smash.ks.com.oneshoot

import android.content.Context
import androidx.multidex.MultiDexApplication
import com.cloudinary.android.LogLevel.DEBUG
import com.cloudinary.android.MediaManager
import com.google.firebase.FirebaseApp
import com.raizlabs.android.dbflow.config.FlowManager
import org.kodein.di.Kodein.Companion.lazy
import org.kodein.di.KodeinAware
import org.kodein.di.android.androidModule
import smash.ks.com.oneshoot.internal.di.modules.AppModule.appProvider
import smash.ks.com.oneshoot.internal.di.modules.RecyclerViewModule.recyclerViewProvider
import smash.ks.com.oneshoot.internal.di.modules.RepositoryModule.repositoryProvider
import smash.ks.com.oneshoot.internal.di.modules.ServiceModule.serviceProvider
import smash.ks.com.oneshoot.internal.di.modules.UtilModule.utilProvider
import smash.ks.com.oneshoot.internal.di.modules.dependencies.UsecaseModule.usecaseProvider

/**
 * Android Main Application
 */
class App : MultiDexApplication(), KodeinAware {
    companion object {
        lateinit var appContext: Context
            private set
    }

    init {
        appContext = this
    }

    /**
     * A Kodein Aware class must be within reach of a Kodein object.
     */
    override val kodein = lazy {
        val app = this@App

        import(androidModule(app))
        /** bindings */
        import(appProvider())
        import(utilProvider(app))
        import(repositoryProvider())
        /** usecases are bind here but the scope is depending on each layers.  */
        import(usecaseProvider())
        import(serviceProvider(app))
        import(recyclerViewProvider(app))
    }

    override fun onCreate() {
        super.onCreate()

        FirebaseApp.initializeApp(this)
        FlowManager.init(this)

        // This can be called any time regardless of initialization.
        MediaManager.setLogLevel(DEBUG)
        // Mandatory - call a flavor of init. Config can be null if cloudinary_url is provided in the manifest.
        MediaManager.init(this)
    }
}