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

Commit 65e07cba authored by Goooler's avatar Goooler Committed by cketti
Browse files

Disable buildFeatures by default to speed up builds

parent 9424de9f
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -44,4 +44,8 @@ dependencies {

android {
    namespace 'com.fsck.k9.core'

    buildFeatures {
        buildConfig true
    }
}
+4 −0
Original line number Diff line number Diff line
@@ -58,6 +58,10 @@ android {
                "fy"
    }

    buildFeatures {
        buildConfig true
    }

    signingConfigs {
        release
    }
+4 −0
Original line number Diff line number Diff line
@@ -72,6 +72,10 @@ dependencies {
android {
    namespace 'com.fsck.k9.ui'

    buildFeatures {
        buildConfig true
    }

    buildTypes {
        debug {
            def useNewSetupUi = project.hasProperty('k9mail.useNewSetupUi') ? project.property('k9mail.useNewSetupUi') : "false"
+4 −0
Original line number Diff line number Diff line
@@ -11,6 +11,10 @@ dependencies {
android {
    namespace 'app.k9mail.ui.widget.list'

    buildFeatures {
        buildConfig true
    }

    buildTypes {
        debug {
            manifestPlaceholders = ['appAuthRedirectScheme': 'FIXME: override this in your app project']
+8 −0
Original line number Diff line number Diff line
# Disable buildFeatures flags by default
android.defaults.buildfeatures.aidl=false
android.defaults.buildfeatures.buildconfig=false
android.defaults.buildfeatures.renderscript=false
android.defaults.buildfeatures.resvalues=false
android.defaults.buildfeatures.shaders=false

android.useAndroidX=true
android.enableJetifier=false
android.nonTransitiveRClass=true

org.gradle.jvmargs=-Xmx1400m
org.gradle.parallel=true
org.gradle.caching=true
Loading