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

Commit a5957898 authored by shamim-emon's avatar shamim-emon
Browse files

Refactor: Move :legacy:notification folder content to :feature:notification module

parent 36fc16c5
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -25,11 +25,11 @@ import app.k9mail.legacy.account.Identity
import app.k9mail.legacy.account.LegacyAccount
import app.k9mail.legacy.account.ShowPictures
import app.k9mail.legacy.account.SpecialFolderSelection
import app.k9mail.legacy.notification.NotificationLight
import app.k9mail.legacy.notification.NotificationSettings
import app.k9mail.legacy.notification.NotificationVibration
import com.fsck.k9.CoreResourceProvider
import com.fsck.k9.K9
import net.thunderbird.feature.notification.NotificationLight
import net.thunderbird.feature.notification.NotificationSettings
import net.thunderbird.feature.notification.NotificationVibration

@Suppress("MagicNumber")
class CommonAccountDefaultsProvider(
+3 −3
Original line number Diff line number Diff line
@@ -23,9 +23,6 @@ import app.k9mail.legacy.account.Identity
import app.k9mail.legacy.account.LegacyAccount
import app.k9mail.legacy.account.ShowPictures
import app.k9mail.legacy.account.SpecialFolderSelection
import app.k9mail.legacy.notification.NotificationLight
import app.k9mail.legacy.notification.NotificationSettings
import app.k9mail.legacy.notification.NotificationVibration
import assertk.assertThat
import assertk.assertions.isEqualTo
import assertk.assertions.isFalse
@@ -33,6 +30,9 @@ import assertk.assertions.isNull
import assertk.assertions.isTrue
import com.fsck.k9.CoreResourceProvider
import com.fsck.k9.K9
import net.thunderbird.feature.notification.NotificationLight
import net.thunderbird.feature.notification.NotificationSettings
import net.thunderbird.feature.notification.NotificationVibration
import org.junit.Test
import org.mockito.kotlin.doReturn
import org.mockito.kotlin.mock
+1 −1
Original line number Diff line number Diff line
@@ -3,5 +3,5 @@ plugins {
}

android {
    namespace = "app.k9mail.legacy.notification"
    namespace = "net.thunderbird.feature.notification"
}
+1 −1
Original line number Diff line number Diff line
package app.k9mail.legacy.notification
package net.thunderbird.feature.notification

import android.app.Notification

+1 −1
Original line number Diff line number Diff line
package app.k9mail.legacy.notification
package net.thunderbird.feature.notification

/**
 * Describes how a notification should behave.
Loading