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

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

Add `:legacy:account` module and move `BaseAccount` there

parent a8523dc7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ plugins {
dependencies {
    implementation(projects.legacy.ui.legacy)
    implementation(projects.legacy.core)
    implementation(projects.legacy.account)
}

android {
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ import androidx.annotation.AttrRes
import androidx.core.content.pm.ShortcutInfoCompat
import androidx.core.content.pm.ShortcutManagerCompat
import androidx.core.graphics.drawable.IconCompat
import com.fsck.k9.BaseAccount
import app.k9mail.legacy.account.BaseAccount
import com.fsck.k9.activity.AccountList
import com.fsck.k9.activity.MessageList
import com.fsck.k9.search.SearchAccount
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ plugins {
dependencies {
    implementation(projects.legacy.ui.legacy)
    implementation(projects.legacy.core)
    implementation(projects.legacy.account)

    implementation(libs.preferencex)
    implementation(libs.timber)
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ package app.k9mail.feature.widget.unread

import android.content.Intent
import android.os.Bundle
import com.fsck.k9.BaseAccount
import app.k9mail.legacy.account.BaseAccount
import com.fsck.k9.activity.AccountList

class UnreadWidgetChooseAccountActivity : AccountList() {
+11 −0
Original line number Diff line number Diff line
plugins {
    id(ThunderbirdPlugins.Library.android)
}

android {
    namespace = "app.k9mail.legacy.account"
}

dependencies {

}
Loading