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

Unverified Commit 4c4025f5 authored by Rafael Tonholo's avatar Rafael Tonholo Committed by GitHub
Browse files

Merge pull request #9979 from wmontwe/bump-gradle

chore(deps): bump Gradle from 8.14.3 to 9.1.0
parents 25677c3d 41de2f83
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -28,12 +28,6 @@ internal fun CommonExtension<*, *, *, *, *, *>.configureSharedConfig(project: Pr
        checkReleaseBuilds = System.getenv("CI_CHECK_RELEASE_BUILDS")?.toBoolean() ?: true
    }

    testOptions {
        unitTests {
            isIncludeAndroidResources = true
        }
    }

    packaging {
        resources {
            excludes += listOf(
+0 −6
Original line number Diff line number Diff line
@@ -15,12 +15,6 @@ android {
    kotlinOptions {
        jvmTarget = ThunderbirdProjectConfig.Compiler.javaCompatibility.toString()
    }

    testOptions {
        unitTests {
            isIncludeAndroidResources = true
        }
    }
}

kotlin {
+6 −0
Original line number Diff line number Diff line
@@ -5,6 +5,12 @@ plugins {
android {
    namespace = "app.k9mail.core.ui.compose.common"
    resourcePrefix = "core_ui_common_"

    testOptions {
        unitTests {
            isIncludeAndroidResources = true
        }
    }
}

dependencies {
+6 −0
Original line number Diff line number Diff line
@@ -6,6 +6,12 @@ plugins {
android {
    namespace = "app.k9mail.core.ui.compose.designsystem"
    resourcePrefix = "designsystem_"

    testOptions {
        unitTests {
            isIncludeAndroidResources = true
        }
    }
}

dependencies {
+6 −0
Original line number Diff line number Diff line
@@ -5,6 +5,12 @@ plugins {
android {
    namespace = "app.k9mail.feature.account.edit"
    resourcePrefix = "account_edit_"

    testOptions {
        unitTests {
            isIncludeAndroidResources = true
        }
    }
}

dependencies {
Loading