Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit a60155eb authored by Wolf-Martell Montwé's avatar Wolf-Martell Montwé
Browse files

Add `:legacy:di` module and move `DI`

parent 99b329ad
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -8,8 +8,8 @@ import android.content.Intent
import android.view.View
import android.widget.RemoteViews
import androidx.core.app.PendingIntentCompat
import com.fsck.k9.EarlyInit
import com.fsck.k9.inject
import app.k9mail.legacy.di.EarlyInit
import app.k9mail.legacy.di.inject
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.SupervisorJob
+1 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ import android.app.Application
import android.content.res.Configuration
import android.content.res.Resources
import app.k9mail.feature.widget.message.list.MessageListWidgetManager
import app.k9mail.legacy.di.DI
import com.fsck.k9.controller.MessagingController
import com.fsck.k9.job.WorkManagerConfigurationProvider
import com.fsck.k9.notification.NotificationChannelManager
+1 −2
Original line number Diff line number Diff line
@@ -10,12 +10,11 @@ dependencies {
    api(projects.core.android.common)

    api(projects.legacy.account)
    api(projects.legacy.di)
    api(projects.legacy.notification)

    implementation(projects.plugins.openpgpApiLib.openpgpApi)

    api(libs.koin.android)

    api(libs.androidx.annotation)

    implementation(libs.okio)
+2 −0
Original line number Diff line number Diff line
@@ -3,6 +3,8 @@ package com.fsck.k9
import android.content.ComponentName
import android.content.Context
import android.content.pm.PackageManager
import app.k9mail.legacy.di.EarlyInit
import app.k9mail.legacy.di.inject
import com.fsck.k9.job.K9JobManager
import com.fsck.k9.mail.internet.BinaryTempFileBody
import com.fsck.k9.notification.NotificationController
+3 −0
Original line number Diff line number Diff line
@@ -2,6 +2,9 @@ package com.fsck.k9

import android.content.Context
import android.content.SharedPreferences
import app.k9mail.legacy.di.DI
import app.k9mail.legacy.di.EarlyInit
import app.k9mail.legacy.di.inject
import com.fsck.k9.Account.SortType
import com.fsck.k9.core.BuildConfig
import com.fsck.k9.mail.K9MailLib
Loading