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

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

Add `:feature:navigation:drawer module and move resources

parent eb898c9d
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
plugins {
    id(ThunderbirdPlugins.Library.androidCompose)
}

android {
    namespace = "app.k9mail.feature.navigation.drawer"
    resourcePrefix = "navigation_drawer_"
}

dependencies {
    implementation(projects.core.ui.compose.designsystem)

    implementation(projects.legacy.core)
    implementation(projects.legacy.ui.base)
    implementation(projects.legacy.ui.account)
    implementation(projects.legacy.ui.folder)
    implementation(projects.core.ui.legacy.designsystem)

    implementation(libs.materialdrawer)
    implementation(libs.androidx.swiperefreshlayout)

    testImplementation(projects.core.ui.compose.testing)
}
Loading