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

Unverified Commit a7dc801e authored by Davor Poznič's avatar Davor Poznič Committed by GitHub
Browse files

Merge branch 'thunderbird:main' into fix-issue-7404

parents 159b3c02 20a5ab90
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
name: Bug report
description: Let us know about crashes or existing functionality not working like it should.
description: Let us know about crashes or existing functionality not working like it should
labels: [ "type: bug", "unconfirmed" ]
body:
  - type: markdown
+4 −4
Original line number Diff line number Diff line
blank_issues_enabled: false
contact_links:
  - name: Feature Request
  - name: Feature request
    url: https://connect.mozilla.org/t5/ideas/idb-p/ideas/label-name/thunderbird%20android
    about: Submit your ideas to improve Thunderbird for Android.
  - name: Mozilla Support Forum (SUMO)
    about: Submit your ideas to improve Thunderbird for Android
  - name: Mozilla support forum (SUMO)
    url: https://support.mozilla.org/products/thunderbird-android
    about: Most issues are not bugs. Ask the community for help.
    about: Many issues are not bugs, ask the community for help
+8 −0
Original line number Diff line number Diff line
---
name: Maintainer issue
about: Please use one of the other issue templates instead
title: ''
labels: []
assignees: []
---
+2 −1
Original line number Diff line number Diff line
org.gradle.daemon=false
org.gradle.parallel=true
org.gradle.workers.max=2
org.gradle.workers.max=4
org.gradle.jvmargs=-Xmx10g -XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8 -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError

kotlin.incremental=false
kotlin.compiler.execution.strategy=in-process
+3 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ import app.k9mail.core.featureflag.InMemoryFeatureFlagProvider
import app.k9mail.feature.telemetry.telemetryModule
import app.k9mail.legacy.account.AccountDefaultsProvider
import app.k9mail.legacy.di.DI
import com.fsck.k9.contacts.ContactPictureLoader
import com.fsck.k9.preferences.StoragePersister
import net.thunderbird.core.android.preferences.InMemoryStoragePersister
import org.koin.dsl.module
@@ -40,4 +41,6 @@ val testModule = module {
            },
        )
    }

    single<ContactPictureLoader> { mock() }
}
Loading